|
From: Andre R. <and...@us...> - 2005-01-12 11:34:37
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31673/Common/source Modified Files: about.c Log Message: Updated About window and startup splash screen: Removed UserLand and trademark char from app name. Fixed minimum window width. Re-enabled old tagline. Switched URL to our new site on sourceforge.net. Index: about.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/about.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** about.c 11 Jan 2005 22:48:04 -0000 1.5 --- about.c 12 Jan 2005 11:34:26 -0000 1.6 *************** *** 136,140 **** #define aboutlineheight 14 ! #define aboutlinewidth 300 #define aboutvertstart 0 --- 136,140 ---- #define aboutlineheight 14 ! #define aboutlinewidth 250 /*2005-01-12 aradke*/ #define aboutvertstart 0 *************** *** 160,164 **** #define versionwidth 56 ! #define minaboutwidth (aboutlinewidth + abouthorizgap + 2 * abouthorizinset) #define agentmenuhorizgap 10 --- 160,164 ---- #define versionwidth 56 ! #define minaboutwidth (aboutlinewidth + abouthorizgap + 2 * abouthorizinset + 4 * abouticonsize) /*2005-01-12 aradke*/ #define agentmenuhorizgap 10 *************** *** 166,183 **** static byte * aboutstrings [] = { ! #ifdef PIKE ! "\x2b" "The power of Web publishing on your desktop", /*7.0b1 PBS*/ ! #else ! "\x2e" "Powerful cross-platform web content management", /*6.1 AR*/ ! #endif ! /*"\x25" "Powerful cross-platform web scripting",*/ "\x23" "© 1992-" copyright_year_string " UserLand Software, Inc.", #ifdef PIKE ! "\x1a" "http://radio.userland.com/", /*7.0d8 PBS*/ #else ! "\x1d" "http://frontier.userland.com/", #endif --- 166,183 ---- static byte * aboutstrings [] = { ! //#ifdef PIKE ! // "\x2b" "The power of Web publishing on your desktop", /*7.0b1 PBS*/ ! //#else ! // "\x2e" "Powerful cross-platform web content management", /*6.1 AR*/ ! //#endif ! "\x25" "Powerful cross-platform web scripting", /*2005-01-12 aradke: re-enabled*/ "\x23" "© 1992-" copyright_year_string " UserLand Software, Inc.", #ifdef PIKE ! "\x26" "http://frontierkernel.sourceforge.net/", /*2005-01-12 aradke*/ #else ! "\x26" "http://frontierkernel.sourceforge.net/", /*2005-01-12 aradke*/ #endif *************** *** 202,220 **** #ifdef PIKE ! #ifdef MACVERSION ! "\x0f" "Radio UserLand\xaa", /*7.0d8 PBS*/ ! #endif ! #ifdef WIN95VERSION ! "\x0f" "Radio UserLand\x99", /*7.0d8 PBS*/ ! #endif ! "\x14" "About Radio UserLand", /*7.0d8 PBS*/ #else ! #ifdef MACVERSION ! "\x12" "UserLand Frontier\xaa", ! #endif ! #ifdef WIN95VERSION ! "\x12" "UserLand Frontier\x99", ! #endif "\x0e" "About Frontier", --- 202,210 ---- #ifdef PIKE ! "\x05" "Radio", /*2005-01-12 aradke*/ ! "\x0b" "About Radio", /*2005-01-12 aradke*/ #else ! "\x08" "Frontier", /*2005-01-12 aradke*/ "\x0e" "About Frontier", *************** *** 756,759 **** --- 746,751 ---- setglobalfontsizestyle (geneva, 9, bold); + rabout.left += abouticonsize; /*2005-01-12 aradke: shorter frontieritem, indent it too*/ + movepento (rabout.left, rabout.top + abouticonsize + globalfontinfo.ascent); *************** *** 766,770 **** ! rabout.left += abouticonsize; rabout.right = rabout.left + abouticonsize; --- 758,762 ---- ! //rabout.left += abouticonsize; /*2005-01-12 aradke*/ rabout.right = rabout.left + abouticonsize; |