|
From: <set...@us...> - 2006-04-07 21:56:40
|
Revision: 1230 Author: sethdill Date: 2006-04-07 14:56:23 -0700 (Fri, 07 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1230&view=rev Log Message: ----------- Include Conversant-specific parts in various places Modified Paths: -------------- Frontier/branches/Conversant/Common/headers/kernelverbs.h Frontier/branches/Conversant/Common/headers/versions.h Frontier/branches/Conversant/Common/resources/Mac/kernelverbs.r Frontier/branches/Conversant/Common/resources/Mac/lang.r Frontier/branches/Conversant/Common/resources/Win32/kernelverbs.rc Modified: Frontier/branches/Conversant/Common/headers/kernelverbs.h =================================================================== --- Frontier/branches/Conversant/Common/headers/kernelverbs.h 2006-04-07 21:53:08 UTC (rev 1229) +++ Frontier/branches/Conversant/Common/headers/kernelverbs.h 2006-04-07 21:56:23 UTC (rev 1230) @@ -56,3 +56,8 @@ extern boolean cryptinitverbs (void); /* langcrypt.c */ +#ifdef flconversantverbs + +extern boolean conversantinitverbs (void); /* conversantverbs.c */ + +#endif \ No newline at end of file Modified: Frontier/branches/Conversant/Common/headers/versions.h =================================================================== --- Frontier/branches/Conversant/Common/headers/versions.h 2006-04-07 21:53:08 UTC (rev 1229) +++ Frontier/branches/Conversant/Common/headers/versions.h 2006-04-07 21:56:23 UTC (rev 1230) @@ -42,7 +42,7 @@ /* common strings for all targets */ -#define APP_COPYRIGHT_FROM "1992" +#define APP_COPYRIGHT_FROM "2000" #define APP_COPYRIGHT_TILL "2006" @@ -105,26 +105,26 @@ /* version info for FRONTIER targets */ - #define APPNAME "Frontier" - #define APP_COPYRIGHT_HOLDER "Frontier Kernel Project" + #define APPNAME "Frontier-Conversant" + #define APP_COPYRIGHT_HOLDER "Macrobyte Resources" - #define bs_APP_NAME "\x08" "Frontier" + #define bs_APP_NAME "\x13" "Frontier-Conversant" #define bs_APP_SLOGAN "\x25" "Powerful cross-platform web scripting" - #define bs_APP_COPYRIGHT "\x23" "\xA9 " APP_COPYRIGHT_FROM "-" APP_COPYRIGHT_TILL " Frontier Kernel Project" - #define bs_APP_URL "\x26" "http://frontierkernel.sourceforge.net/" + #define bs_APP_COPYRIGHT "\x1F" "\xA9 " APP_COPYRIGHT_FROM "-" APP_COPYRIGHT_TILL " Macrobyte Resources" + #define bs_APP_URL "\x20" "http://conversant.macrobyte.net/" #define APP_MAJOR_VERSION 10 #define APP_MAJOR_VERSION_BCD 0x10 /* major version in BCD notation */ #define APP_SUB_VERSION 1 - #define APP_MINOR_VERSION 0 + #define APP_MINOR_VERSION 2 #define APP_SUBMINOR_VERSION_BCD 0x10 /* sub and minor version in BCD notation */ #define APP_STAGE_CODE 0x40 /* dev = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 */ #define APP_REVISION_LEVEL 9 /* for non-final releases only */ #define APP_BUILD_NUMBER 9 /* increment by one for every release, final or not */ - #define APP_VERSION_STRING "10.1a9" + #define APP_VERSION_STRING "10.1a9c2" #endif @@ -170,8 +170,9 @@ #define frontier_revision_level 5 /* for non-final releases only */ #define frontier_build_number 5 /* increment by one for every release, final or not */ -#define frontier_version_string "10.1a5" +#define frontier_version_string "10.1a9c2" +#define copyright_year_string "2006" /* OPML Editor version information */ Modified: Frontier/branches/Conversant/Common/resources/Mac/kernelverbs.r =================================================================== --- Frontier/branches/Conversant/Common/resources/Mac/kernelverbs.r 2006-04-07 21:53:08 UTC (rev 1229) +++ Frontier/branches/Conversant/Common/resources/Mac/kernelverbs.r 2006-04-07 21:56:23 UTC (rev 1230) @@ -1135,3 +1135,9 @@ } }; + +#ifdef flconversantverbs + +#include "conversantverbs.r" + +#endif Modified: Frontier/branches/Conversant/Common/resources/Mac/lang.r =================================================================== --- Frontier/branches/Conversant/Common/resources/Mac/lang.r 2006-04-07 21:53:08 UTC (rev 1229) +++ Frontier/branches/Conversant/Common/resources/Mac/lang.r 2006-04-07 21:56:23 UTC (rev 1230) @@ -1049,6 +1049,17 @@ } }; +#ifdef flconversantverbs + +resource 'STR#' (270, "Conversant Errors", purgeable) { + { /* array StringArray: 1 elements */ + /* [1] */ + "Internal error running \"conv.^0\"." + } +}; + +#endif + resource 'DLOG' (259, "notify", purgeable) { {0, 0, 107, 375}, dBoxProc, Modified: Frontier/branches/Conversant/Common/resources/Win32/kernelverbs.rc =================================================================== --- Frontier/branches/Conversant/Common/resources/Win32/kernelverbs.rc 2006-04-07 21:53:08 UTC (rev 1229) +++ Frontier/branches/Conversant/Common/resources/Win32/kernelverbs.rc 2006-04-07 21:56:23 UTC (rev 1230) @@ -1073,3 +1073,4 @@ "hmacSHA1\0" END +#include "conversantverbs.rc" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |