Changeset 3110 for trunk/ChangeLog

Show
Ignore:
Timestamp:
05/09/07 02:41:01 (2 years ago)
Author:
paul
Message:

0.8s change notes and release.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r3065 r3110  
    22 
    33=============================================================================== 
    4 Dabo 0.8 (2007-04-16) (Revision 3066): 
     4Dabo 0.8 (2007-05-09) (Revision 3111): 
    55 
    66Enhancements: 
    77 
    88    ===== General Stuff ===== 
     9+ Improved a lot of the handling of paths. It is now possible to correctly  
     10  resolve a relative path when the source file and the contained file are in  
     11  different directories, while the app is running from a third directory. 
     12 
    913+ Added datanav2; deprecated datanav. datanav2 no longer supports fieldSpecs, 
    1014  relationSpecs, and other things. The general theme is that the generated 
     
    2327 
    2428    ===== UI Tier ===== 
     29+ Began work getting grid cell properties set up. IOW, being able to set the 
     30  ForeColor of a specific row in a column (a single cell), including 
     31  dynamic cell properties. Currently, it works, but the only property 
     32  I've added yet is CellForeColor and DynamicCellForeColor. 
     33 
     34+ Removed the requirement that objects used as DataSources have to inherit  
     35  from dObject. Thanks Carl for pointing out the limitation. 
     36 
     37+ Added dDockForm to the main trunk, which is Dabo's wrapper for wxAUI.  
     38 
     39+ Added the option of passing complex filter expressions to setAll(). This  
     40  function now accepts a tuple of filter expressions of the format  
     41  'att comp val', which will be eval'd with the child objects inn order to  
     42  determine if the filter applies. Each expression in the tuple is ANDed  
     43  with the others; all the tuple elements must evaluate to True for the  
     44  value to be set. 
     45 
     46+ Added the dHtmlBox.HtmlLinkClicked event. 
     47 
     48+ Added the HatchStyle property to draw objects. This gives you the option  
     49  of specifying that the fill for drawn objects can be one of the following  
     50  hatch patterns: 
     51 
     52    Solid (default) 
     53    Transparent 
     54    Cross 
     55    Horizontal 
     56    Vertical 
     57    Diagonal 
     58    ReverseDiagonal 
     59    CrossDiagonal 
     60 
    2561+ EasyDialogBuilder - minor improvements by Nate Lowrie. 
    2662 
     
    82118 
    83119    ===== Data Tier ===== 
     120+ Added the option of passing additional keyword arguments to db.dConnection. 
     121  Thanks Uwe for noting the limitation. 
     122 
    84123+ dbFirebird - Minor improvements by Uwe Grauer. 
    85124 
     
    101140+ Added the concept of VirtualFields to dBizobj, which provides a simple, 
    102141  flexible interface to reference calculated fields on the fly. 
     142 
     143+ Added the 'SaveNewUnchanged' property to dBizobj. When this is True, new  
     144  records that have not been modified from their defaults are saved; the  
     145  default remains to not insert such records.  
    103146 
    104147+ Improved data binding to bizobjs on a parent form. 
     
    169212+ Fixed status text to clear the old field validation failed message when the 
    170213  user fixes the value and the field now passes validation. 
     214 
     215+ Fixed the geometry persistence to only restore the size of the form from  
     216  user settings if BorderResizable is set to True.  
     217 
     218+ Fixed dGrid's AlternateRowColoring to be settable from the constructor 
     219  or initProperties (previously, it was only settable in afterInit() or 
     220  later).  
     221 
     222+ Dynamic props on dColumn were not working: fixed. 
     223 
     224+ Fixed a bug that confused the string 'None' with the null value None when  
     225  setting BorderStyle from a cdxml. Thanks to Miguel for catching this one. 
     226 
     227+ Fixed a couple of bugs related to the dSizer.BorderSides property.  
     228  Previously it was not retrieving that property correctly from the internal  
     229  wx flag. 
    171230 
    172231