[Rezilla-commits] RezillaExtras/ToggleFork/ToggleFork_Rsrc ToggleFork.plc, 1.1, 1.2 ToggleFork_aete
Brought to you by:
bdesgraupes
From: Bernard D. <bde...@us...> - 2006-11-28 15:46:27
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31494 Modified Files: ToggleFork.plc ToggleFork_aete.r Log Message: Update for 1.1.1 Index: ToggleFork_aete.r =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc/ToggleFork_aete.r,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ToggleFork_aete.r 24 Sep 2004 09:50:52 -0000 1.1 +++ ToggleFork_aete.r 28 Nov 2006 15:46:18 -0000 1.2 @@ -1,8 +1,5 @@ - #define SystemSevenOrLater 1 -#include "Types.r" -#include "SysTypes.r" -#include "AEUserTermTypes.r" +#include <Carbon/Carbon.r> resource 'aete' (0,"English") { Index: ToggleFork.plc =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc/ToggleFork.plc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ToggleFork.plc 24 Sep 2004 09:50:52 -0000 1.1 +++ ToggleFork.plc 28 Nov 2006 15:46:18 -0000 1.2 @@ -1,24 +1,25 @@ // =========================================================================== // ToggleFork.plc // Created: 2003-04-26 16:09:00 -// Last modification: 2004-09-24 11:11:52 -// Author: Bernard Desgraupes -// e-mail: <bde...@us...> -// www: <http://webperso.easyconnect.fr/bdesgraupes/> -// (c) Copyright: Bernard Desgraupes 2003-2004 +// Last modification: 2006-11-28 14:07:33 +// Author : Bernard Desgraupes +// e-mail : <bde...@or...> +// www : <http://perso.orange.fr/bdesgraupes/> +// (c) Copyright : Bernard Desgraupes 2003-2006 // All rights reserved. -// $Date$ -// $Revision$ // =========================================================================== +#include "../ToggleFork_Src/ToggleFork_ID.h" + + // Change this to your bundle identifier string #define kBundleIdentifier "fr.togglefork.bdesgraupes" // Change this to your short version string -#define kBundleShortVersion __OUTPUT_FILENAME__ " version 1.0" +#define kBundleShortVersion __OUTPUT_FILENAME__ " " TOGGLEFORK_VERSION_STRING // Change this to the string to display in the Finder's Get Info window -#define kBundleGetInfo kBundleShortVersion ", Copyright \U00A9 2003 by Bernard Desgraupes. All rights reserved." +#define kBundleGetInfo kBundleShortVersion ", Copyright \U00A9 2003-" __YEAR__ " by B Desgraupes. All rights reserved." plist { @@ -33,10 +34,13 @@ key "CFBundlePackageType" value string __OUTPUT_TYPE__ key "CFBundleSignature" value string __OUTPUT_CREATOR__ key "CFBundleVersion" value string "1.0" - + key "CFBundleIconFile" value string "ToggleFork.icns" + key "CFBundleDevelopmentRegion" value string "English" key "CFBundleInfoDictionaryVersion" value string "6.0" key "LSPrefersCarbon" value boolean true + key "LSUIElement" value boolean true + key "LSBackgroundOnly" value boolean true key "CFBundleDocumentTypes" value array [ @@ -58,3 +62,19 @@ } } +// // Generate a version.plist file +// +// #pragma output_filename "version.plist" +// +// plist +// { +// dictionary +// { +// key "BuildVersion" value string "" +// key "CFBundleVersion" value string TOGGLEFORK_VERSION_STRING +// key "ProductBuildVersion" value string 7K571 +// key "ProjectName" value string __OUTPUT_FILENAME__ +// key "SourceVersion" value string 1200000 +// } +// } + |