Changeset 490
- Timestamp:
- 09/20/04 11:04:08 (4 years ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/__init__.py (modified) (1 diff)
- trunk/__version__.py (added)
- trunk/dApp.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r448 r490 1 See the Subversion log for all the details. 2 3 Dabo-0.2 (2004-09-20): 4 5 Continued improving FireBird database support, improved MySQL support. Added 6 preliminary SQLite support. 7 8 Save passwords encrypted. 9 10 Added logger objects to send program output to, instead of directly to stdout. 11 12 Began abstraction of Tkinter at purely an experimental level. 13 14 Added some new controls, such as a better date control and a combo box. 15 16 Brought in some Foxpro string functions from the openfox project. 17 18 New event model, greatly simplifying the binding of events, the raising of events, 19 and the subclassing of events to define new events. 20 21 Added preliminary unicode support to the cursor level. 22 1 23 2 24 Dabo-0.1.1 (2004-06-13): trunk/__init__.py
r440 r490 84 84 85 85 from dApp import dApp 86 from __version__ import version 86 87 import dEvents 87 88 trunk/dApp.py
r482 r490 95 95 self.setAppInfo("appName", "Dabo") 96 96 if not self.getAppInfo("appVersion"): 97 self.setAppInfo("appVersion", "0.1")97 self.setAppInfo("appVersion", dabo.version["version"]) 98 98 if not self.getAppInfo("vendorName"): 99 99 self.setAppInfo("vendorName", "Dabo")
