|
From: <and...@us...> - 2006-04-08 15:34:45
|
Revision: 1231 Author: andreradke Date: 2006-04-08 08:34:26 -0700 (Sat, 08 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1231&view=rev Log Message: ----------- Updated about window and splash screen to give proper credit to UserLand Software. Modified Paths: -------------- Frontier/trunk/Common/headers/versions.h Frontier/trunk/Common/resources/Mac/SHELL.R Frontier/trunk/Common/resources/Win32/WinLand.rc Frontier/trunk/Common/source/about.c Modified: Frontier/trunk/Common/headers/versions.h =================================================================== --- Frontier/trunk/Common/headers/versions.h 2006-04-07 21:56:23 UTC (rev 1230) +++ Frontier/trunk/Common/headers/versions.h 2006-04-08 15:34:26 UTC (rev 1231) @@ -42,7 +42,7 @@ /* common strings for all targets */ -#define APP_COPYRIGHT_FROM "1992" +#define APP_COPYRIGHT_FROM "2004" #define APP_COPYRIGHT_TILL "2006" @@ -128,6 +128,7 @@ #endif +#define bs_APP_COPYRIGHT2 "\x22" "\xA9 1992-2004 UserLand Software, Inc" #define APP_COPYRIGHT APP_COPYRIGHT_FROM "-" APP_COPYRIGHT_TILL " " APP_COPYRIGHT_HOLDER #define APPNAME_SHORT APPNAME /* 2006-02-04 aradke */ Modified: Frontier/trunk/Common/resources/Mac/SHELL.R =================================================================== --- Frontier/trunk/Common/resources/Mac/SHELL.R 2006-04-07 21:56:23 UTC (rev 1230) +++ Frontier/trunk/Common/resources/Mac/SHELL.R 2006-04-08 15:34:26 UTC (rev 1231) @@ -4017,7 +4017,7 @@ plain, //302, 0, /*7.0b50 PBS: the About window has no buttons*/ - {40, 40, 100, 460}, + {40, 40, 114, 460}, }; resource 'cnfg' (138, "quick script") { Modified: Frontier/trunk/Common/resources/Win32/WinLand.rc =================================================================== --- Frontier/trunk/Common/resources/Win32/WinLand.rc 2006-04-07 21:56:23 UTC (rev 1230) +++ Frontier/trunk/Common/resources/Win32/WinLand.rc 2006-04-08 15:34:26 UTC (rev 1231) @@ -2027,7 +2027,7 @@ size12, plain, 0, - 40L, 40L, 460L, 100L + 40L, 40L, 460L, 114L END /*resource 'cnfg' (138, "quick script") {*/ Modified: Frontier/trunk/Common/source/about.c =================================================================== --- Frontier/trunk/Common/source/about.c 2006-04-07 21:56:23 UTC (rev 1230) +++ Frontier/trunk/Common/source/about.c 2006-04-08 15:34:26 UTC (rev 1231) @@ -151,7 +151,7 @@ #define aboutrectheightStats (aboutvertinset * 2 + aboutvertstart + aboutrowsStats * aboutlineheight + aboutvertgap) -#define aboutrowsNoStats 3 +#define aboutrowsNoStats 4 #define aboutrectheightNoStats (aboutvertinset * 2 + aboutvertstart + aboutrowsNoStats * aboutlineheight + aboutvertgap) @@ -167,6 +167,8 @@ bs_APP_SLOGAN, /* 2006-02-06 aradke: see versions.h */ + bs_APP_COPYRIGHT2, /* 2006-04-08 aradke: see versions.h */ + bs_APP_COPYRIGHT, /* 2006-02-06 aradke: see versions.h */ bs_APP_URL, /* 2006-02-06 aradke: see versions.h */ @@ -200,6 +202,8 @@ sloganitem, + copyright2item, + copyrightitem, urlitem, @@ -724,6 +728,8 @@ #endif setglobalfontsizestyle (geneva, 9, bold); + + rabout.top += max ((aboutrowsNoStats * aboutlineheight - abouticonsize) / 2, 0); rabout.left += abouticonsize; /*2005-01-12 aradke: shorter frontieritem, indent it too*/ @@ -746,6 +752,8 @@ ccdrawfrontiericon (rabout, false); } + ccdrawtextitem (copyright2item, nil, normal, leftjustified); + ccdrawtextitem (copyrightitem, nil, normal, leftjustified); ccdrawurlitem (false); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |