Changeset 3251

Show
Ignore:
Timestamp:
07/13/07 13:07:23 (1 year ago)
Author:
paul
Message:

Bumped stable version to 0.8.1. Tag to follow.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/stable/ChangeLog

    r3110 r3251  
    11See the Subversion log for all the details. 
     2=============================================================================== 
     3Dabo 0.8.1 (2007-07-13) (Revision 3251): 
     4+ Added ScanRestorePosition property to dBizobj. Added optional parameter 
     5  scanReverse to scan(). This fixes the fact that previously user code 
     6  didn't have access to the __scanRestorePosition and __scanReverse 
     7  attributes. 
     8 
     9+ Refactored/fixed the case of an exception happening during scan: previously, 
     10  another exception would happen because we tried to restore the row number  
     11  even if we saved the PK value instead. (Ticket #1064) 
     12 
     13+ The "Preferences" menu item in dBaseMenuBar's Edit menu used a hotkey of "P",  
     14  which conflicted with Paste. Checked around and other apps use the "e" for 
     15  the hotkey instead. Fixed in trunk and stable. 
     16 
     17+ Fixed a problem where textboxes would lose their selection when moving  
     18  focus.  
     19 
     20+ Fixed a KeyError in dTreeView's makeDirTree() function, thanks to a fix 
     21  by hraban in ticket #1076. 
     22 
     23+ Fixed some unicode issues in paths in 3 places in the framework, thanks to 
     24  Wolfram Hinderer in ticket #1083. 
     25 
     26+ Fixed copy/paste in dShell. Ticket #1039. 
     27 
    228 
    329=============================================================================== 
  • branches/stable/dabo/__version__.py

    r3110 r3251  
    33# Everything else is boilerplate copied also to other dabo repositories. 
    44package_name = "dabo" 
    5 _version = "0.8s" 
     5_version = "0.8.1s" 
    66 
    77 
  • trunk/ChangeLog

    r3110 r3251  
    11See the Subversion log for all the details. 
     2 
     3=============================================================================== 
     4Dabo 0.8.1 (2007-07-13) (Revision 3251): 
     5+ Added ScanRestorePosition property to dBizobj. Added optional parameter 
     6  scanReverse to scan(). This fixes the fact that previously user code 
     7  didn't have access to the __scanRestorePosition and __scanReverse 
     8  attributes. 
     9 
     10+ Refactored/fixed the case of an exception happening during scan: previously, 
     11  another exception would happen because we tried to restore the row number  
     12  even if we saved the PK value instead. (Ticket #1064) 
     13 
     14+ The "Preferences" menu item in dBaseMenuBar's Edit menu used a hotkey of "P",  
     15  which conflicted with Paste. Checked around and other apps use the "e" for 
     16  the hotkey instead. Fixed in trunk and stable. 
     17 
     18+ Fixed a problem where textboxes would lose their selection when moving  
     19  focus.  
     20 
     21+ Fixed a KeyError in dTreeView's makeDirTree() function, thanks to a fix 
     22  by hraban in ticket #1076. 
     23 
     24+ Fixed some unicode issues in paths in 3 places in the framework, thanks to 
     25  Wolfram Hinderer in ticket #1083. 
     26 
     27+ Fixed copy/paste in dShell. Ticket #1039. 
     28 
    229 
    330===============================================================================