|
From: Andre R. <and...@us...> - 2006-02-05 16:22:51
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6053 Modified Files: versions.h Log Message: Include version info for OPML Editor. Move some string constants from about.c to this file. Index: versions.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/versions.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** versions.h 7 Oct 2005 04:07:37 -0000 1.12 --- versions.h 5 Feb 2006 16:22:43 -0000 1.13 *************** *** 45,49 **** #define radio_stage_code 0x40 /* dev = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 */ ! #define radio_revision_level 5 /* for non-final releases only */ #define radio_build_number 5 /* increment by one for every release, final or not */ --- 45,49 ---- #define radio_stage_code 0x40 /* dev = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 */ ! #define radio_revision_level 5 /* for non-final releases only */ #define radio_build_number 5 /* increment by one for every release, final or not */ *************** *** 56,62 **** #define frontier_major_version_bcd 0x10 /* major version in BCD notation */ ! #define frontier_sub_version 1 #define frontier_minor_version 0 ! #define frontier_subminor_version_bcd 0x10 /* sub and minor version in BCD notation */ #define frontier_stage_code 0x40 /* dev = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 */ --- 56,62 ---- #define frontier_major_version_bcd 0x10 /* major version in BCD notation */ ! #define frontier_sub_version 1 #define frontier_minor_version 0 ! #define frontier_subminor_version_bcd 0x10 /* sub and minor version in BCD notation */ #define frontier_stage_code 0x40 /* dev = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 */ *************** *** 67,90 **** /* strings for all apps */ ! #define copyright_year_string "2005" /* Define app name and related strings */ #ifdef PIKE ! #define APPNAME "Radio UserLand" ! #define APPNAME_SHORT "Radio" #else ! #define APPNAME "Frontier" ! #define APPNAME_SHORT "Frontier" #endif /* app name for display -- ends with the trademark character */ ! #ifdef MACVERSION ! #define APPNAME_TM APPNAME /* 2005-01-12 aradke: app names no longer include trademark character - "\xAA" */ ! #endif ! #ifdef WIN95VERSION ! #define APPNAME_TM APPNAME /* 2005-01-12 aradke: app names no longer include trademark character - "\x99" */ ! #endif --- 67,127 ---- + /* OPML Editor version information */ + + #define opml_major_version 10 + #define opml_major_version_bcd 0x10 /* major version in BCD notation */ + + #define opml_sub_version 1 + #define opml_minor_version 0 + #define opml_subminor_version_bcd 0x10 /* sub and minor version in BCD notation */ + + #define opml_stage_code 0x40 /* dev = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 */ + #define opml_revision_level 5 /* for non-final releases only */ + #define opml_build_number 5 /* increment by one for every release, final or not */ + + #define opml_version_string "10.1a5" + + /* strings for all apps */ ! #define copyright_year_string "2006" /* Define app name and related strings */ #ifdef PIKE ! #ifndef OPMLEDITOR ! #define APPNAME "Radio" ! #else ! #define APPNAME "OPML" ! #endif #else ! #define APPNAME "Frontier" #endif + #define APPNAME_SHORT APPNAME /* 2006-02-04 aradke */ + /* app name for display -- ends with the trademark character */ ! /* 2005-01-12 aradke: app names no longer include trademark character */ ! #define APPNAME_TM APPNAME ! + /* 2006-02-04 aradke: Product slogan and url as shown in about window */ + + #ifdef PIKE + #ifndef OPMLEDITOR + #define app_name "\x05" "Radio" + #define app_slogan "\x2b" "The power of Web publishing on your desktop" + #define app_copyright "\x23" "© 1992-" copyright_year_string " UserLand Software, Inc." + #define app_url "\x26" "http://frontierkernel.sourceforge.net/" + #else + #define app_name "\x04" "OPML" + #define app_slogan "\x25" "Powerful OPML editing on your desktop" + #define app_copyright "\x20" "© 1992-" copyright_year_string " Scripting News, Inc." + #define app_url "\x18" "http://support.opml.org/" + #endif + #else + #define app_name "\x08" "Frontier" + #define app_slogan "\x25" "Powerful cross-platform web scripting" + #define app_copyright "\x23" "© 2004-" copyright_year_string " Frontier Kernel Project" + #define app_url "\x26" "http://frontierkernel.sourceforge.net/" + #endif |