Index: ossp-pkg/as/as-gui/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v rcsdiff -q -kk '-r1.30' '-r1.31' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v' 2>/dev/null --- ChangeLog 2003/02/04 13:06:12 1.30 +++ ChangeLog 2003/02/04 19:40:52 1.31 @@ -2,6 +2,12 @@ 030204 Minor change to prematurely accept event format version 0.6 Fix constant bug to really prematurely accept event format version 0.6 + Added dynamically bound version text to all widget label titles + Implemented current (date|time) on '.', zero (date|time) on empty field + Hardcoded math logic to compute start '-' finish on '.' amount entry + Load logic now replaces period with fresh newly generated GUIDs + Tried to fix tarball rolling file name exceptions in devtool + Replaced __u format datatypes in Uuid class with U from master header 030203 Better implement 'please add entries' announcement to beginning users Improved edit control [en|dis]ablement condition, and remove pixmap Index: ossp-pkg/as/as-gui/README RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/README,v rcsdiff -q -kk '-r1.26' '-r1.27' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/README,v' 2>/dev/null --- README 2003/02/04 13:06:12 1.26 +++ README 2003/02/04 19:40:52 1.27 @@ -6,7 +6,7 @@ |___/ OSSP asgui -- Accounting system graphical user interface - Version 0.6.10 (04-Feb-2003) + Version 0.6.11 (04-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.75' '-r1.76' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v' 2>/dev/null --- TODO 2003/02/04 13:47:50 1.75 +++ TODO 2003/02/04 19:40:52 1.76 @@ -28,15 +28,12 @@ After every result write a status bar message On multiple selection, no text should appear in edit ctrls Make consistent setEdition(), setDirty() default parameters -Solve problem with nonorthogonal ' ' '-' '=' data token separators 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) --------------------- @@ -49,6 +46,7 @@ On win32, all or some file reads and writes probably need IO_Translate? Method saveData(stream) must write to a new file, otherwise writes data pattern CRCs are being generated before parsing of "" is finished? +Double click on column separator is broken again Nice to have ------------ 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.24' '-r1.25' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_version.cpp,v' 2>/dev/null --- as_version.cpp 2003/02/04 13:06:13 1.24 +++ as_version.cpp 2003/02/04 19:40:52 1.25 @@ -8,7 +8,7 @@ #ifndef _AS_VERSION_CPP_ #define _AS_VERSION_CPP_ -#define ASGUI_VERSION 0x00620A +#define ASGUI_VERSION 0x00620B typedef struct { const int v_hex; @@ -32,13 +32,13 @@ #undef _AS_VERSION_CPP_AS_HEADER_ asgui_version_t asgui_version = { - 0x00620A, - "0.6.10", - "0.6.10 (04-Feb-2003)", - "This is OSSP as-gui, Version 0.6.10 (04-Feb-2003)", - "OSSP as-gui 0.6.10 (04-Feb-2003)", - "OSSP as-gui/0.6.10", - "@(#)OSSP as-gui 0.6.10 (04-Feb-2003)", + 0x00620B, + "0.6.11", + "0.6.11 (04-Feb-2003)", + "This is OSSP as-gui, Version 0.6.11 (04-Feb-2003)", + "OSSP as-gui 0.6.11 (04-Feb-2003)", + "OSSP as-gui/0.6.11", + "@(#)OSSP as-gui 0.6.11 (04-Feb-2003)", "$Id$" };