Index: ossp-pkg/as/as-gui/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v rcsdiff -q -kk '-r1.27' '-r1.28' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v' 2>/dev/null --- ChangeLog 2003/01/31 18:48:57 1.27 +++ ChangeLog 2003/02/03 21:30:48 1.28 @@ -1,5 +1,13 @@ Geschichte des OSSP titraq in Vorwaerts Cronordnung +030203 Better implement 'please add entries' announcement to beginning users + Improved edit control [en|dis]ablement condition, and remove pixmap + Deny pasting of empty clipboard data, and adding of zero rows + Backed out logic to recognize '-', '+', and '=' separator symbols + Implemented a quality string class with a CRC32 checksum method + Load logic now fills in '.' in CRC field with a fresh new CRC + More widget label renaming to AS Accounting System + 030131 Fix logic when calling saveFile, but returning in a dirty state Fix some logical combinations of open and new doc save operations Renamed some visible widget text from to AS Accounting System Index: ossp-pkg/as/as-gui/README RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/README,v rcsdiff -q -kk '-r1.23' '-r1.24' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/README,v' 2>/dev/null --- README 2003/02/03 10:39:03 1.23 +++ README 2003/02/03 21:30:48 1.24 @@ -6,7 +6,7 @@ |___/ OSSP asgui -- Accounting system graphical user interface - Version 0.6.7 (31-Jan-2003) + Version 0.6.8 (03-Feb-2003) ABSTRACT Index: ossp-pkg/as/as-gui/TODO RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v rcsdiff -q -kk '-r1.72' '-r1.73' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v' 2>/dev/null --- TODO 2003/01/31 18:48:57 1.72 +++ TODO 2003/02/03 21:30:48 1.73 @@ -32,7 +32,11 @@ Use namespace 'AS' or unique identifier 'AS' for all classnames Unify class mycl = class(), class mycl(), class *pMycl, auto_ptr Win32 code in User class is only half written, and incomplete homedir +Verify routine consistently scans all fields on load and new entries Remove all exception raises from slot code +New doc, new entry, change text in table, close... No verify save! +Repeat '.' -> 'CRC32' process on loadData for GUIDs also +Remember to yank the __u32 preprocess code out of as_uuid Bugs (? = unverified) --------------------- @@ -57,6 +61,7 @@ CRC und Rev sollen nicht in gleiche Methode berechnet No need to have upd slots for non-changeable upd controls Before openDoc, closeEvent should be used instead of new code +Align CRC field data to left edge of table items Architectural ------------- Index: ossp-pkg/as/as-gui/as_version.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_version.cpp,v rcsdiff -q -kk '-r1.21' '-r1.22' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_version.cpp,v' 2>/dev/null --- as_version.cpp 2003/02/03 10:39:03 1.21 +++ as_version.cpp 2003/02/03 21:30:48 1.22 @@ -8,7 +8,7 @@ #ifndef _AS_VERSION_CPP_ #define _AS_VERSION_CPP_ -#define ASGUI_VERSION 0x006207 +#define ASGUI_VERSION 0x006208 typedef struct { const int v_hex; @@ -32,13 +32,13 @@ #undef _AS_VERSION_CPP_AS_HEADER_ asgui_version_t asgui_version = { - 0x006207, - "0.6.7", - "0.6.7 (31-Jan-2003)", - "This is OSSP as-gui, Version 0.6.7 (31-Jan-2003)", - "OSSP as-gui 0.6.7 (31-Jan-2003)", - "OSSP as-gui/0.6.7", - "@(#)OSSP as-gui 0.6.7 (31-Jan-2003)", + 0x006208, + "0.6.8", + "0.6.8 (03-Feb-2003)", + "This is OSSP as-gui, Version 0.6.8 (03-Feb-2003)", + "OSSP as-gui 0.6.8 (03-Feb-2003)", + "OSSP as-gui/0.6.8", + "@(#)OSSP as-gui 0.6.8 (03-Feb-2003)", "$Id$" };