Index: ossp-pkg/as/as-gui/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v rcsdiff -q -kk '-r1.29' '-r1.30' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v' 2>/dev/null --- ChangeLog 2003/02/04 11:45:16 1.29 +++ ChangeLog 2003/02/04 13:06:12 1.30 @@ -1,6 +1,7 @@ Geschichte des OSSP titraq in Vorwaerts Cronordnung 030204 Minor change to prematurely accept event format version 0.6 + Fix constant bug to really prematurely accept event format version 0.6 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.25' '-r1.26' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/README,v' 2>/dev/null --- README 2003/02/04 11:45:16 1.25 +++ README 2003/02/04 13:06:12 1.26 @@ -6,7 +6,7 @@ |___/ OSSP asgui -- Accounting system graphical user interface - Version 0.6.9 (04-Feb-2003) + Version 0.6.10 (04-Feb-2003) ABSTRACT Index: ossp-pkg/as/as-gui/as_const.h RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_const.h,v rcsdiff -q -kk '-r1.46' '-r1.47' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_const.h,v' 2>/dev/null --- as_const.h 2003/02/04 07:52:18 1.46 +++ as_const.h 2003/02/04 13:06:12 1.47 @@ -38,7 +38,7 @@ #define TITRAQ_APPTITLE "AS Accounting System" #define TITRAQ_STR_ID "OSSPASGUI" /* APPID */ #define TITRAQ_UID_ID 0x84fae747e1a64016bf049e98bbc4bd96 /* UUID */ -#define TITRAQ_PREFVER "0.6" +#define TITRAQ_PREFVER "0.5" #define TITRAQ_PREFHOME "homedir" #define TITRAQ_DEFHOME "." #define TITRAQ_PREFUSER "user" @@ -132,7 +132,7 @@ // Other value constants #define TITRAQ_DATAVERSIONMAJ 0 -#define TITRAQ_DATAVERSIONMIN 5 +#define TITRAQ_DATAVERSIONMIN 6 // Environment string constants #define TITRAQ_ENVUSERNAME "USER" 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.23' '-r1.24' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_version.cpp,v' 2>/dev/null --- as_version.cpp 2003/02/04 11:45:16 1.23 +++ as_version.cpp 2003/02/04 13:06:13 1.24 @@ -8,7 +8,7 @@ #ifndef _AS_VERSION_CPP_ #define _AS_VERSION_CPP_ -#define ASGUI_VERSION 0x006209 +#define ASGUI_VERSION 0x00620A typedef struct { const int v_hex; @@ -32,13 +32,13 @@ #undef _AS_VERSION_CPP_AS_HEADER_ asgui_version_t asgui_version = { - 0x006209, - "0.6.9", - "0.6.9 (04-Feb-2003)", - "This is OSSP as-gui, Version 0.6.9 (04-Feb-2003)", - "OSSP as-gui 0.6.9 (04-Feb-2003)", - "OSSP as-gui/0.6.9", - "@(#)OSSP as-gui 0.6.9 (04-Feb-2003)", + 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)", "$Id$" };