Changeset 3110
- Timestamp:
- 05/09/07 02:41:01 (2 years ago)
- Files:
-
- trunk/ChangeLog (modified) (5 diffs)
- trunk/dabo/__version__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3065 r3110 2 2 3 3 =============================================================================== 4 Dabo 0.8 (2007-0 4-16) (Revision 3066):4 Dabo 0.8 (2007-05-09) (Revision 3111): 5 5 6 6 Enhancements: 7 7 8 8 ===== 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 9 13 + Added datanav2; deprecated datanav. datanav2 no longer supports fieldSpecs, 10 14 relationSpecs, and other things. The general theme is that the generated … … 23 27 24 28 ===== 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 25 61 + EasyDialogBuilder - minor improvements by Nate Lowrie. 26 62 … … 82 118 83 119 ===== Data Tier ===== 120 + Added the option of passing additional keyword arguments to db.dConnection. 121 Thanks Uwe for noting the limitation. 122 84 123 + dbFirebird - Minor improvements by Uwe Grauer. 85 124 … … 101 140 + Added the concept of VirtualFields to dBizobj, which provides a simple, 102 141 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. 103 146 104 147 + Improved data binding to bizobjs on a parent form. … … 169 212 + Fixed status text to clear the old field validation failed message when the 170 213 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. 171 230 172 231 trunk/dabo/__version__.py
r3054 r3110 3 3 # Everything else is boilerplate copied also to other dabo repositories. 4 4 package_name = "dabo" 5 _version = "0.8 a"5 _version = "0.8s" 6 6 7 7
