Changeset 406
- Timestamp:
- Tue May 20 12:53:04 2008
- Files:
-
- ganttpv/trunk/mac_extras/Info.plist (modified) (diff)
- ganttpv/trunk/Menu.py (modified) (diff)
- ganttpv/trunk/readme.txt (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ganttpv/trunk/mac_extras/Info.plist
r316 r406 59 59 <string>APPL</string> 60 60 <key>CFBundleShortVersionString</key> 61 <string>0. 8</string>61 <string>0.9</string> 61 61 <key>CFBundleSignature</key> 62 62 <string>????</string> 63 63 <key>CFBundleVersion</key> 64 <string>0. 8a</string>64 <string>0.9</string> 64 64 <key>LSHasLocalizedDisplayName</key> 65 65 <false/> -
ganttpv/trunk/Menu.py
r403 r406 457 457 return 458 458 459 menuItems = menu.GetMenuItems()459 menuItems = list(menu.GetMenuItems()) 459 459 if not title: 460 460 # Nothing to add, but don't leave a hanging separator. … … 475 475 # Ensure a separator before the window names. 476 476 menu.InsertSeparator(pos) 477 menuItems = menu.GetMenuItems()477 menuItems = list(menu.GetMenuItems()) 477 477 pos += 1 478 478 while pos < len(menuItems): -
ganttpv/trunk/readme.txt
r317 r406 1 Some important things to know about GanttPV version 0. 8:1 Some important things to know about GanttPV version 0.9: 1 1 2 2 1 - Opening files … … 21 21 http://www.pureviolet.net/ganttpv/scripts/ 22 22 23 GanttPV 0. 8 includes the most current versions of all scripts as of 080407 (August 4, 2007).23 GanttPV 0.9 includes the most current versions of all scripts as of March 16, 2008. 23 23 24 24 5 - Forum … … 51 51 7 - What's New 52 52 53 What's New in Release 0.9? 54 55 New features: 56 - supports export of unicode characters in HTML export 57 - adds new Export Database as XML script (plus some sample xslt transforms that work on the xml export) 58 - allows setting multiple tasks as child tasks at the same time 59 - uses Alex's GanttPV icon for the program on Windows 60 61 Bug fixes: 62 - fixes the disappearing scroll bar problem (on windows) 63 - fixes the missing dll problem some users have reported (on windows) 64 - fixes the disappearing names in assigned resources display (when the names contain non-ascii characters) (on windows) 65 66 ---- changes in prior versions ---- 67 53 68 What's New in Release 0.8? 54 69 … … 83 98 - Corrected row selection logic in grid reports (so that shift-click and control-click work more as expected) 84 99 85 86 100 What's New in Release 0.7? 87 101
