Changeset 490

Show
Ignore:
Timestamp:
09/20/04 11:04:08 (4 years ago)
Author:
paul
Message:

Added a version.py file to dabo to track the version, and made it import
into the dabo namespace. Changed the dApp initialization to use that value
instead of the hardcoded 0.1 which has been in there since the beginning.

Added some summary changelog entries for 0.2 which we'll be releasing later
today.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r448 r490  
     1See the Subversion log for all the details. 
     2 
     3Dabo-0.2 (2004-09-20): 
     4 
     5Continued improving FireBird database support, improved MySQL support. Added 
     6preliminary SQLite support. 
     7 
     8Save passwords encrypted. 
     9 
     10Added logger objects to send program output to, instead of directly to stdout. 
     11 
     12Began abstraction of Tkinter at purely an experimental level. 
     13 
     14Added some new controls, such as a better date control and a combo box.  
     15 
     16Brought in some Foxpro string functions from the openfox project. 
     17 
     18New event model, greatly simplifying the binding of events, the raising of events, 
     19and the subclassing of events to define new events. 
     20 
     21Added preliminary unicode support to the cursor level.  
     22     
    123 
    224Dabo-0.1.1 (2004-06-13): 
  • trunk/__init__.py

    r440 r490  
    8484 
    8585from dApp import dApp 
     86from __version__ import version 
    8687import dEvents 
    8788 
  • trunk/dApp.py

    r482 r490  
    9595            self.setAppInfo("appName", "Dabo") 
    9696        if not self.getAppInfo("appVersion"): 
    97             self.setAppInfo("appVersion", "0.1"
     97            self.setAppInfo("appVersion", dabo.version["version"]
    9898        if not self.getAppInfo("vendorName"): 
    9999            self.setAppInfo("vendorName", "Dabo")