rezilla-commits Mailing List for Rezilla
Brought to you by:
bdesgraupes
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
(134) |
Mar
(223) |
Apr
(87) |
May
(70) |
Jun
(186) |
Jul
(13) |
Aug
(202) |
Sep
(128) |
Oct
(145) |
Nov
(306) |
Dec
(296) |
2005 |
Jan
(376) |
Feb
(265) |
Mar
(176) |
Apr
(147) |
May
(233) |
Jun
(211) |
Jul
(43) |
Aug
|
Sep
(195) |
Oct
(41) |
Nov
|
Dec
|
2006 |
Jan
(32) |
Feb
(288) |
Mar
(157) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(282) |
Oct
(183) |
Nov
(156) |
Dec
|
From: Bernard D. <bde...@us...> - 2006-11-28 16:20:16
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc/Images In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13053 Added Files: ToggleFork.icns Log Message: First checkin --- NEW FILE: ToggleFork.icns --- (This appears to be a binary file; contents omitted.) |
From: Bernard D. <bde...@us...> - 2006-11-28 16:19:35
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc/Images In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12990/Images Log Message: Directory /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc/Images added to the repository |
From: Bernard D. <bde...@us...> - 2006-11-28 16:19:24
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/Aida In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12911 Added Files: ToggleForkHelp.aida Log Message: First checkin --- NEW FILE: ToggleForkHelp.aida --- :Title: ToggleForkHelp :DestFolder: ../Help :Project: Rezilla :Author: Bernard Desgraupes :Email: bde...@us... :Homepage: http://perso.orange.fr/bdesgraupes/ :Created: 2006-11-28 14:14:23 :Modified: 2006-11-28 14:14:23 :Keywords: resource, fork ((s1 What is it about? Traditionally, Macintosh files have always been constituted of two forks: the data fork and the resource fork. This latter contains all kinds of resources, which are data in a predefined format used by the application while it is running (icons, menus, strings etc.) or by the system itself. The main draw back of this model is that, when a Macintosh file is copied to another system, it generally looses its resource fork and most of the time it becomes unusable. Since system 9, for the sake of portability of software to other operating systems, Apple has introduced the notion of resources stored in the data fork of a file rather than in the resource fork. Bundled applications, for instance, can thus store their resources in separate files contained in the bundle. ((b ToggleFork b)) is a simple drag and drop tool which lets you transfer the resources from a fork to the other. If you have an editor (like ResEdit) which is ((i not i)) able to edit resources contained in the datafork of a file, you can use ToggleFork to get a file having the same resources in its resource fork and view or edit them. The converse is true: you can prepare your resources with a traditional editor in the resource fork of a file and get a datafork resource file using ToggleFork. ((s1 How does it work? Just drag a file over the icon of ((b ToggleFork b)): ((lu ((li if it is a traditional file with both a data fork and a resource fork, its resource fork will be rewritten in the data fork of a separate file called by default ((i Out.datafork i)). The original file is unmodified. ((li if it is a file containing resources in its datafork, all its resources will be copied to the resource fork of a separate file called by default ((i Out.rsrcfork i)). The original file is unmodified. ((li if the file has no resource, nothing happens. lu)) ((b ToggleFork b)) is a background only application which immediately quits after it has done its job. You should normally not even see it in the Dock. ((s1 Download ((b ToggleFork b)) can be found on ((lk http://perso.orange.fr/bdesgraupes/tools.html )) my web page lk)). Click to ((lk http://perso.orange.fr/bdesgraupes/Downloads/ToggleFork.hqx )) download ToggleFork lk)) You need Stuffit Expander to unpack it. ((s1 Scriptability ((b ToggleFork b)) is scriptable so you can drive it with ((b AppleScript b)). The terminolgy contains a single term: ToggleFork with an optional parameter ((i to i)) which lets you specify the name of the output file instead of the default names mentioned above. ((| tell application "ToggleFork" ToggleFork "HD:folder:subfolder:somefile" as alias end tell |)) or ((| tell application "ToggleFork" ToggleFork "HD:folder:subfolder:somefile" as alias to "the_new_name" end tell |)) Here is ToggleFork's dictionary as reported by AppleScript Editor: ((| ToggleFork: Exchange resource forks (data fork resources become resource fork resources and vice versa) ToggleFork alias -- the input file [to string] -- name of the output file Quit: Quit the application Quit |)) ((s1 AppleEvents If you want to use AppleEvents directly, the ((i ToggleFork i)) term is attached to the ((i aevt/odoc i)) event. The optional parameter has code 'name'. For instance, if you use the text editor ((lk http://alphatcl.sourceforge.net/wiki )) ((i Alpha i)) lk)) (which has a ((lk http://wiki.tcl.tk/ )) Tcl lk)) interpreter), you would write, in a Tcl script or in Alpha's Tcl shell, something like: ((| set filename "HD:folder:subfolder:somefile" AEBuild -r 'TgFk' aevt odoc ---- [tclAE::build::alis $filename] |)) or ((| AEBuild -r 'TgFk' aevt odoc ---- [tclAE::build::alis $filename] \ name [tclAE::build::TEXT "some_new_name"] |)) ((s1 Why ToggleFork? OK, I know, one can open a Terminal window in OSX and type commands like this: ((| touch SomeApp-rsrcfork.rsrc cp SomeApp.rsrc SomeApp-rsrcfork.rsrc/rsrc rm SomeApp.rsrc mv SomeApp-rsrcfork.rsrc SomeApp.rsrc |)) So why should you use ToggleFork? Well, matter of taste: instead of typing command line instructions, all you have to do is drag and drop your file on the icon of ToggleFork. And ToggleFork is scriptable, which is great for script lovers. ((s1 Known problems This tool is designed for Mac OS X 10.2 or greater. Please ((lk mailto:bde...@us... )) email me lk)) any problem you encounter with this software: ((nl Author: Bernard Desgraupes ((nlWeb: http://perso.orange.fr/bdesgraupes/tools.html ((s1 Version history ((lu ((li 1.0 -- 2003-04-27 -- First release. ((li 1.1 -- 2003-05-25 -- Bug fix (in copy of attributes). ((li 1.1.1 -- 2006-11-28 -- Switched to packaged application. lu)) ((s1 Licence and disclaimer This software is free software and distributed under the terms of the new BSD license: ((lu ((li Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ((li Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. ((li Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. ((li Neither the name of Bernard Desgraupes nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. lu)) This software is provided by the copyright holders and contributors ((i as is i)) and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the regents or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage. (c) Copyright: Bernard Desgraupes, 2003-((s [clock format [clock seconds] -format "%Y"] s)) All rights reserved. ((- ((nl Last updated ((s [ISOTime::ISODateAndTimeRelaxed] s)) |
From: Bernard D. <bde...@us...> - 2006-11-28 16:18:51
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/AppleScript/Scriptability In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12488 Added Files: ToggleFork_AppleScript_Syntax Log Message: First checkin --- NEW FILE: ToggleFork_AppleScript_Syntax --- ToggleFork AppleScript suite ============================ $Date: 2006/11/28 16:18:48 $ $Revision: 1.1 $ ToggleFork events ----------------- ToggleFork: Exchange resource forks (data fork resources become resource fork resources and vice versa) ToggleFork alias -- the input file [to string] -- name of the output file Quit: Quit the application Quit |
From: Bernard D. <bde...@us...> - 2006-11-28 16:18:48
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/AppleScript/Scriptability In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12423 Added Files: ToggleFork_AppleEvents_Syntax Log Message: First checkin --- NEW FILE: ToggleFork_AppleEvents_Syntax --- ToggleFork_AppleEvents_Syntax ============================= $Date: 2006/11/28 16:18:37 $ $Revision: 1.1 $ Version : 1.0 Language code: 0 Script code: 0 Number of Suites : 1 1- ToggleFork suite Description : ToggleFork events Suite ID : 'TgFk' Suite level : 1 Suite version : 1 Number of Events : 2 Event 1 : ToggleFork Description : Exchange resource forks (data fork resources become resource fork resources and vice versa) Event class : 'aevt' Event ID : 'odoc' Type of reply's direct parameter : 'null' Direct parameter type: 'alis' Direct parameter description : the input file Direct parameter is required. Number of additional parameters : 1 Parameter 1 : to Parameter keyword : 'name' Parameter type : 'TEXT' Parameter description : name of the output file Parameter 1 is optional. Event 2 : Quit Description : Quit the application Event class : 'aevt' Event ID : 'quit' Type of reply's direct parameter : 'null' |
From: Bernard D. <bde...@us...> - 2006-11-28 16:18:31
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/AppleScript/Scriptability In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12390 Added Files: ToggleFork.applescript ToggleForkAndRename.applescript Log Message: First checkin --- NEW FILE: ToggleFork.applescript --- tell application "ToggleFork" ToggleFork "HD:folder:subfolder:somefile" as alias end tell --- NEW FILE: ToggleForkAndRename.applescript --- tell application "ToggleFork" ToggleFork "HD:folder:subfolder:somefile" as alias to "some_new_name" end tell |
From: Bernard D. <bde...@us...> - 2006-11-28 16:15:30
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/AppleScript/Scriptability In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10787/Scriptability Log Message: Directory /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/AppleScript/Scriptability added to the repository |
From: Bernard D. <bde...@us...> - 2006-11-28 16:15:05
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/Help In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10429 Added Files: ToggleFork_Changes Log Message: First checkin --- NEW FILE: ToggleFork_Changes --- ToggleFork_Changes ================== Changes history --------------- 1.0 -- 2003-04-27 -- First release. 1.1 -- 2003-05-25 -- Bug fix (in copy of attributes). 1.1.1 -- 2006-11-28 -- Switched to packaged application. ---- author: Bernard Desgraupes e-mail: <bde...@us...> Last modification: 2006-11-28 14:12:12 |
From: Bernard D. <bde...@us...> - 2006-11-28 16:14:37
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/Help In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv10359/Help Log Message: Directory /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/Help added to the repository |
From: Bernard D. <bde...@us...> - 2006-11-28 15:48:39
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/Aida In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32305/Aida Log Message: Directory /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/Aida added to the repository |
From: Bernard D. <bde...@us...> - 2006-11-28 15:48:24
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/AppleScript In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32293/AppleScript Log Message: Directory /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/AppleScript added to the repository |
From: Bernard D. <bde...@us...> - 2006-11-28 15:47:30
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31907 Added Files: ToggleFork_ID.h ToggleFork_Prefix.pch Log Message: First checkin --- NEW FILE: ToggleFork_Prefix.pch --- // // Prefix header for all source files of the 'ToggleFork' target in the 'ToggleFork' project. // #include <Carbon/Carbon.h> --- NEW FILE: ToggleFork_ID.h --- // =========================================================================== // ToggleFork_ID.h // Created : 2006-11-11 10:19:38 // Last modification : 2006-11-28 13:02:33 // Author : Bernard Desgraupes // e-mail : <bde...@us...> // www : <http://perso.orange.fr/bdesgraupes/> // (c) Copyright : Bernard Desgraupes 2006 // All rights reserved. // =========================================================================== // developStage 0x20 // alphaStage 0x40 // betaStage 0x60 // finalStage 0x80 #define TOGGLEFORK_MAJOR 1 #define TOGGLEFORK_MINOR 1 #define TOGGLEFORK_SUBMINOR 1 #define TOGGLEFORK_STAGE 'f' // developStage, alphaStage, betaStage, finalStage #define TOGGLEFORK_DEVEL 0 // Version number string #define TOGGLEFORK_VERSION_STRING "1.1.1" |
From: Bernard D. <bde...@us...> - 2006-11-28 15:47:02
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31528 Modified Files: ToggleFork.c ToggleFork.h Log Message: Update for 1.1.1 Index: ToggleFork.c =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Src/ToggleFork.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ToggleFork.c 24 Sep 2004 09:51:18 -0000 1.1 +++ ToggleFork.c 28 Nov 2006 15:46:59 -0000 1.2 @@ -1,18 +1,15 @@ // =========================================================================== // ToggleFork.c // Created: 2003-04-26 16:21:26 -// Last modification: 2004-09-24 11:09:28 +// Last modification: 2006-11-28 13:04:18 // Author: Bernard Desgraupes // e-mail: <bde...@us...> // www: <http://webperso.easyconnect.fr/bdesgraupes/> -// (c) Copyright: Bernard Desgraupes 2003-2004 +// (c) Copyright: Bernard Desgraupes 2003-2006 // All rights reserved. -// $Date$ -// $Revision$ // =========================================================================== - -#include <Carbon.h> +#include <Carbon/Carbon.h> #include <string.h> #include "ToggleFork.h" @@ -28,9 +25,9 @@ // ------------------------------------------------------------------------------ -// ¥ main +// main // ------------------------------------------------------------------------------ -void main(void) +int main(void) { Tgfk_Initialize(); @@ -44,7 +41,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_Initialize +// Tgfk_Initialize // ------------------------------------------------------------------------------ void Tgfk_Initialize(void) { @@ -55,7 +52,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_InitAEHandlers +// Tgfk_InitAEHandlers // ------------------------------------------------------------------------------ void Tgfk_InitAEHandlers(void) @@ -81,7 +78,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_AEDiffEventHandler +// Tgfk_AEDiffEventHandler // ------------------------------------------------------------------------------ pascal OSErr Tgfk_AEOpenDocHandler(const AppleEvent *inAppleEvent, @@ -114,7 +111,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_AEDoNothingHandler +// Tgfk_AEDoNothingHandler // ------------------------------------------------------------------------------ pascal OSErr Tgfk_AEDoNothingHandler(const AppleEvent *messagein, AppleEvent *reply, long refIn) @@ -126,7 +123,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_AENotHandledHandler +// Tgfk_AENotHandledHandler // ------------------------------------------------------------------------------ pascal OSErr Tgfk_AENotHandledHandler(const AppleEvent *messagein, AppleEvent *reply, long refIn) @@ -138,7 +135,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_AEQuitHandler +// Tgfk_AEQuitHandler // ------------------------------------------------------------------------------ pascal OSErr Tgfk_AEQuitHandler(const AppleEvent *messagein, AppleEvent *reply, long refIn) @@ -150,7 +147,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_DoQuit +// Tgfk_DoQuit // ------------------------------------------------------------------------------ void Tgfk_DoQuit() @@ -160,7 +157,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_DoToggleFork +// Tgfk_DoToggleFork // ------------------------------------------------------------------------------ void Tgfk_DoToggleFork(FSSpec * inFSSpec, Str255 inString, Size inNumBytes) @@ -304,7 +301,7 @@ // ------------------------------------------------------------------------------ -// ¥ Tgfk_HFSNameToUnicodeName +// Tgfk_HFSNameToUnicodeName // ------------------------------------------------------------------------------ // Borrowed and adapted from MoreFilesX.c Index: ToggleFork.h =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Src/ToggleFork.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ToggleFork.h 24 Sep 2004 09:51:18 -0000 1.1 +++ ToggleFork.h 28 Nov 2006 15:46:59 -0000 1.2 @@ -7,11 +7,8 @@ // www: <http://webperso.easyconnect.fr/bdesgraupes/> // (c) Copyright: Bernard Desgraupes 2003-2004 // All rights reserved. -// $Date$ -// $Revision$ // =========================================================================== -#include <Carbon.h> // Global proc ptr NavEventUPP gEventProc; |
From: Bernard D. <bde...@us...> - 2006-11-28 15:46:53
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31518 Added Files: ToggleFork_prefix.plc Log Message: First checkin --- NEW FILE: ToggleFork_prefix.plc --- // =========================================================================== // DiffBOA_prefix.plc // Created : 2006-11-11 10:19:38 // Last modification : 2006-11-12 10:21:56 // Author : Bernard Desgraupes // e-mail : <bde...@us...> // www : <http://perso.orange.fr/bdesgraupes/> // (c) Copyright : Bernard Desgraupes 2006 // All rights reserved. // =========================================================================== #define __OUTPUT_CREATOR__ "TgFk" #define __OUTPUT_TYPE__ "APPL" |
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 +// } +// } + |
From: Bernard D. <bde...@us...> - 2006-11-28 15:46:07
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Rsrc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31100 Removed Files: ToggleFork_carb.r ToggleFork_icons.r ToggleFork_main.r ToggleFork_vers.r Log Message: rm --- ToggleFork_main.r DELETED --- --- ToggleFork_vers.r DELETED --- --- ToggleFork_icons.r DELETED --- --- ToggleFork_carb.r DELETED --- |
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras/Scriptability In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30638/Scriptability Removed Files: ToggleFork.scpt ToggleForkAndRename.scpt ToggleFork_AppleEvents_Syntax ToggleFork_AppleScript_Syntax Log Message: rm --- ToggleFork_AppleEvents_Syntax DELETED --- --- ToggleFork_AppleScript_Syntax DELETED --- --- ToggleFork.scpt DELETED --- --- ToggleForkAndRename.scpt DELETED --- |
From: Bernard D. <bde...@us...> - 2006-11-28 15:44:48
|
Update of /cvsroot/rezilla/RezillaExtras/ToggleFork/ToggleFork_Extras In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30638 Removed Files: ToggleFork_Changes ToggleFork_ReadMe ToggleFork_aete.xml Log Message: rm --- ToggleFork_Changes DELETED --- --- ToggleFork_ReadMe DELETED --- --- ToggleFork_aete.xml DELETED --- |
From: Bernard D. <bde...@us...> - 2006-11-28 15:20:19
|
Update of /cvsroot/rezilla/RezillaSource/Rezilla_Src/Pickers/PickerStamps In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19481 Added Files: CPSTR_PickerStamp.cp CPSTR_PickerStamp.h Log Message: First checkin --- NEW FILE: CPSTR_PickerStamp.cp --- // =========================================================================== // CPSTR_PickerStamp.cp // // Created : 2006-11-28 15:21:58 // Last modification : 2006-11-28 15:39:54 // Author : Bernard Desgraupes // e-mail : <bde...@us...> // www : <http://rezilla.sourceforge.net/> // (c) Copyright: Bernard Desgraupes 2006 // All rights reserved. // =========================================================================== #ifdef PowerPlant_PCH #include PowerPlant_PCH #endif #include "CPSTR_PickerStamp.h" #include "CPickerWindow.h" #include "CPickerView.h" #include "CStaticClickThrough.h" #include "CMenuObject.h" #include "UResources.h" #include "UMiscUtils.h" #include "RezillaConstants.h" PP_Begin_Namespace_PowerPlant // --------------------------------------------------------------------------- // CPSTR_PickerStamp Default Constructor [public] // --------------------------------------------------------------------------- CPSTR_PickerStamp::CPSTR_PickerStamp( CPickerView * inParent, const SPaneInfo& inPaneInfo, const SViewInfo& inViewInfo) : CPickerStamp(inParent, inPaneInfo, inViewInfo) { SPaneInfo pi; Rect frame; CalcLocalFrameRect(frame); // Static field basic values pi.paneID = 0; pi.left = 0; pi.top = 0; pi.width = frame.right - frame.left; pi.height = frame.bottom - frame.top; pi.visible = true; pi.enabled = true; pi.bindings.left = false; pi.bindings.top = false; pi.bindings.right = false; pi.bindings.bottom = false; pi.userCon = 0; pi.superView = this; mStaticField = new CStaticClickThrough(pi, "\p", Txtr_MonacoNineBlue); } // --------------------------------------------------------------------------- // ~CPSTR_PickerStamp Destructor [public] // --------------------------------------------------------------------------- CPSTR_PickerStamp::~CPSTR_PickerStamp() { } // --------------------------------------------------------------------------- // StampSize [public] // --------------------------------------------------------------------------- // case 'STR ': // case 'PStr': void CPSTR_PickerStamp::StampSize(ResType inType, SInt16 &outWidth, SInt16 &outHeight) { #pragma unused(inType) outWidth = 120; outHeight = 60; } // --------------------------------------------------------------------------- // DrawSelf [public] // --------------------------------------------------------------------------- void CPSTR_PickerStamp::DrawSelf() { if (mStaticField != NULL) { // The resID is the paneID of the PickerView ResIDT theID = mParent->GetPaneID(); ResType theType = mParent->GetOwnerWindow()->GetType(); short theRefNum = mParent->GetUserCon(); LStr255 theText("\p"); Str255 theLine; StRezRefSaver saver(theRefNum); Handle theStrHandle = ::Get1Resource(theType, theID); ::HandToHand(&theStrHandle); if (theStrHandle != NULL) { LHandleStream * theStream = new LHandleStream(theStrHandle); Boolean truncated = false; if (theStream->GetLength() == 0) { theText += "\p\r\r <empty string>"; } else { try { *theStream >> theLine; if (theLine[0] > 90) { theLine[0] = 90; truncated = true; } theText += theLine; if (truncated) { theText += "\pÉ"; } } catch (...) { theText += "\p\r\r <invalid string>"; } } mStaticField->SetDescriptor(theText); delete theStream; } } } PP_End_Namespace_PowerPlant --- NEW FILE: CPSTR_PickerStamp.h --- // =========================================================================== // CPSTR_PickerStamp.h // // Created : 2006-11-28 15:21:52 // Last modification : 2006-11-28 15:40:02 // Author : Bernard Desgraupes // e-mail : <bde...@us...> // www : <http://rezilla.sourceforge.net/> // (c) Copyright: Bernard Desgraupes 2006 // All rights reserved. // =========================================================================== #ifndef _H_CPSTR_PickerStamp #define _H_CPSTR_PickerStamp #pragma once #include "CPickerStamp.h" #include <LStaticText.h> #if PP_Uses_Pragma_Import #pragma import on #endif class CPickerView; class CStaticClickThrough; PP_Begin_Namespace_PowerPlant // --------------------------------------------------------------------------- class CPSTR_PickerStamp : public CPickerStamp { public: CPSTR_PickerStamp( CPickerView * inParent, const SPaneInfo& inPaneInfo, const SViewInfo& inViewInfo); virtual ~CPSTR_PickerStamp(); virtual void DrawSelf(); static void StampSize(ResType inType, SInt16 &outWidth, SInt16 &outHeight); private: CStaticClickThrough * mStaticField; }; PP_End_Namespace_PowerPlant #if PP_Uses_Pragma_Import #pragma import reset #endif #endif |
From: Bernard D. <bde...@us...> - 2006-11-28 15:19:49
|
Update of /cvsroot/rezilla/RezillaSource/Rezilla_Src/Application In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19224 Modified Files: CPickersController.cp Log Message: Picker for 'STR ' and 'PSTR' Index: CPickersController.cp =================================================================== RCS file: /cvsroot/rezilla/RezillaSource/Rezilla_Src/Application/CPickersController.cp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- CPickersController.cp 9 Oct 2006 16:44:57 -0000 1.11 +++ CPickersController.cp 28 Nov 2006 15:19:37 -0000 1.12 @@ -2,7 +2,7 @@ // CPickersController.cp // // Created: 2006-02-23 15:12:16 -// Last modification: 2006-10-09 17:03:54 +// Last modification: 2006-11-28 15:26:18 // Author: Bernard Desgraupes // e-mail: <bde...@us...> // www: <http://rezilla.sourceforge.net/> @@ -29,6 +29,7 @@ #include "CMENU_PickerStamp.h" #include "CSTRx_PickerStamp.h" #include "CTEXT_PickerStamp.h" +#include "CPSTR_PickerStamp.h" #include "CPattern_PickerStamp.h" #include "CCursor_PickerStamp.h" #include "CIconFamily_PickerStamp.h" @@ -79,6 +80,8 @@ case 'RID#': case 'Mcmd': case 'RidL': + case 'STR ': + case 'PStr': case 'cicn': case 'ICON': case 'SICN': @@ -140,6 +143,11 @@ new TPickerDoc<CSTRx_PickerStamp>( (LCommander *) inRezMapDoc, inSuperMap, inRezTypeItem, inReadOnly); break; + case 'STR ': + case 'PStr': + new TPickerDoc<CPSTR_PickerStamp>( (LCommander *) inRezMapDoc, inSuperMap, inRezTypeItem, inReadOnly); + break; + case 'cicn': new TPickerDoc<Ccicn_PickerStamp>( (LCommander *) inRezMapDoc, inSuperMap, inRezTypeItem, inReadOnly); break; |
From: Bernard D. <bde...@us...> - 2006-11-28 15:19:21
|
Update of /cvsroot/rezilla/RezillaSource/Rezilla_Src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19168 Modified Files: RezillaID.h Log Message: Bumped to 1.2b1 Index: RezillaID.h =================================================================== RCS file: /cvsroot/rezilla/RezillaSource/Rezilla_Src/RezillaID.h,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- RezillaID.h 18 Nov 2006 06:54:51 -0000 1.62 +++ RezillaID.h 28 Nov 2006 15:19:18 -0000 1.63 @@ -1,7 +1,7 @@ // =========================================================================== // RezillaID.h // Created: 2004-02-23 15:26:13 -// Last modification: 2006-11-18 07:00:42 +// Last modification: 2006-11-28 10:28:51 // Author: Bernard Desgraupes // e-mail: <bde...@us...> // www: <http://rezilla.sourceforge.net/> @@ -15,10 +15,10 @@ #define REZILLA_MAJOR 1 -#define REZILLA_MINOR 1 +#define REZILLA_MINOR 2 #define REZILLA_SUBMINOR 0 -#define REZILLA_STAGE finalStage -#define REZILLA_DEVEL 0 +#define REZILLA_STAGE betaStage +#define REZILLA_DEVEL 1 // Version number string -#define REZILLA_PLC_VERSION "1.1" +#define REZILLA_PLC_VERSION "1.2b1" |
From: Bernard D. <bde...@us...> - 2006-11-28 15:12:18
|
Update of /cvsroot/rezilla/RezillaExtras/Tests/AppleScript_Tests/RezillaScripting_Tests In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15906/AppleScript_Tests/RezillaScripting_Tests Modified Files: RezillaScripting_TestSuite.tcl Log Message: vs-1_1 Index: RezillaScripting_TestSuite.tcl =================================================================== RCS file: /cvsroot/rezilla/RezillaExtras/Tests/AppleScript_Tests/RezillaScripting_Tests/RezillaScripting_TestSuite.tcl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- RezillaScripting_TestSuite.tcl 10 Oct 2006 17:10:38 -0000 1.3 +++ RezillaScripting_TestSuite.tcl 28 Nov 2006 15:12:15 -0000 1.4 @@ -39,7 +39,7 @@ # # # Configurable variables # # # # -------------------------------- namespace eval ::rezilla::test { - variable rezillaName "Rezilla_D" + variable rezillaName "Rezilla" } # -------------------------------- |
From: Bernard D. <bde...@us...> - 2006-11-28 15:11:37
|
Update of /cvsroot/rezilla/RezillaHelp In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15513 Modified Files: Rezilla_Readme rezilla.html Log Message: vs-1_1 Index: rezilla.html =================================================================== RCS file: /cvsroot/rezilla/RezillaHelp/rezilla.html,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- rezilla.html 25 Nov 2006 12:01:52 -0000 1.17 +++ rezilla.html 28 Nov 2006 15:11:32 -0000 1.18 @@ -81,9 +81,9 @@ of the project at SourceForge. The most recent version is <B>1.1</B> which can also be downloaded from this page: click on the following links to get the -<A HREF="../Downloads/Rezilla.hqx"> binary</A> +<A HREF="../Downloads/Rezilla.dmg"> binary</A> or the -<A HREF="../Downloads/RezillaSrc.hqx"> sources</A>.<P>The application is bundled. You can install it anywhere on your system. +<A HREF="../Downloads/RezillaSrc.dmg"> sources</A>.<P>The application is bundled. You can install it anywhere on your system. Just double-click on its icon to launch it.<P><B>Warning</B> Rezilla is currently a project under development (aka work in progress). It comes without any warranty (see the license terms). That said, it Index: Rezilla_Readme =================================================================== RCS file: /cvsroot/rezilla/RezillaHelp/Rezilla_Readme,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- Rezilla_Readme 25 Nov 2006 12:02:15 -0000 1.29 +++ Rezilla_Readme 28 Nov 2006 15:11:32 -0000 1.30 @@ -1,56 +1,57 @@ - - Rezilla +======= Rezilla is a resource forks editor for the Macintosh. This is version 1.1. This new version is a major upgrade and brings the following new features: - * new plugin architecture to support the addition of third party editors - * new image editor (implemented as a plugin) to display and manipulate -image resources. It supports the following image formats: - JPEG, TIFF, GIF, PNG, BMP. + * new image editor (implemented as a plugin) to display and manipulate + image resources. It supports the following image formats: JPEG, TIFF, + GIF, PNG, BMP. - * new 'icns' editor to manage icon suite resources. You can -create, modify, redraw, delete, etc. any of the bitmaps included in an -'icns' resource suite. Possibility of importing from or exporting to a -".icns" image data file. Possibility of exploding or imploding the contents -of an 'icns'. + * new 'icns' editor to manage icon suite resources. You can create, + modify, redraw, delete, etc. any of the bitmaps included in an 'icns' + resource suite. Possibility of importing from or exporting to a ".icns" + image data file. Possibility of exploding or imploding the contents of + an 'icns'. - * introduced resource pickers for -displaying graphically and easily manipulating all the resources of a particular type. Pickers -have been defined for the following types: - 'TEXT', 'MENU', 'STR#', 'MBAR', 'RID#', 'Mcmd', 'RidL', 'cicn', 'ICON', 'SICN', 'icns', 'PICT', 'PAT ', 'ppat', 'PAT#', 'ICN#', 'icl4', 'icl8', 'icm#', 'icm4', 'icm8', 'ics#', 'ics4', 'ics8', 'CURS', 'crsr' + * introduced resource pickers for displaying graphically and easily + manipulating all the resources of a particular type. Pickers have been + defined for the following types: + 'TEXT', 'MENU', 'STR#', 'MBAR', 'RID#', 'Mcmd', 'RidL', 'cicn', + 'ICON', 'SICN', 'icns', 'PICT', 'PAT ', 'ppat', 'PAT#', 'ICN#', + 'icl4', 'icl8', 'icm#', 'icm4', 'icm8', 'ics#', 'ics4', 'ics8', + 'CURS', 'crsr' - * new Plugins command in the File menu to get info about -the plugins and rearrange their order + * new Plugins command in the File menu to get info about the plugins + and rearrange their order * possibility of importing/exporting an entire resource map from/to XML - * new Import command in the File menu to import data in -some resource editors + * new Import command in the File menu to import data in some resource + editors - * XML export now correctly escapes the standard entities and writes in -utf-8 encoding + * XML export now correctly escapes the standard entities and writes in + utf-8 encoding * new WCOL and LCOL tags in the Template editor for RGB colors stored on -2 or 4 bytes respectively + 2 or 4 bytes respectively * improved Unique ID algorithm: it now returns the first available value -(above the current one) when calculating a unique ID rather than a random -number + (above the current one) when calculating a unique ID rather than a + random number * aliases are now followed for templates located in Application Support -folders + folders * improved edition of resource ID tags (RSID) in the Template editor. A dynamic -popup offers the currently available choices. + popup offers the currently available choices. * added new templates for the Templates editor (there are now more than -400 templates) + 400 templates) * improved clipboard handling of hexadecimal data strings @@ -67,21 +68,15 @@ * many bug fixes... - - - - Previous versions already implemented the following features: + * Rezilla lets you edit, create, modify, duplicate, remove resources + contained in any fork (data fork or resource fork), copy, cut and paste + them from a resource map to the other, drag and drop resources etc. - * Rezilla lets you edit, create, modify, duplicate, remove resources - contained in any fork (data fork or resource fork), copy, cut and paste - them from a resource map to the other, drag and drop resources etc. - - * Rezilla comes equipped with an Hexadecimal Editor and a -Template Editor. The template editor ships with no less than - 400 predefined templates and lets you easily - define and add more. + * Rezilla comes equipped with an Hexadecimal Editor and a Template + Editor. The template editor ships with no less than 400 predefined + templates and lets you easily define and add more. * Rezilla has several dedicated editors: * a Text Editor to edit 'TEXT' and 'styl' resources @@ -95,11 +90,10 @@ * a List Editor to edit 'STR#', 'MBAR', 'Mcmd' and 'RidL' resources - * an Aete Editor to edit AppleScript terminology resources - (resources with type 'aete' or 'aeut'). It can generate - -Scripting Definition files (sdef) and export to Xml, DeRez, Html, and Text - formats. It can also import an aete from an Xml file. + * an Aete Editor to edit AppleScript terminology resources + (resources with type 'aete' or 'aeut'). It can generate Scripting + Definition files (sdef) and export to Xml, DeRez, Html, and Text + formats. It can also import an aete from an Xml file. * a Pict Viewer to visualize, copy, cut and paste 'PICT' resources @@ -110,8 +104,7 @@ * complete scriptability to drive Rezilla from AppleScript scripts - * Rezilla can export resource maps in text, HTML, XML or DeRez - formats + * Rezilla can export resource maps in text, HTML, XML or DeRez formats * Rezilla can compare two resource maps. @@ -121,27 +114,27 @@ -The Rezilla project is a work in progress. It comes -without any warranty (see the license terms). That said, it has been -thoroughly tested and has proven quite stable and reliable. +The Rezilla project is a work in progress. It comes without any warranty +(see the license terms). That said, it has been thoroughly tested and has +proven quite stable and reliable. Please read the doc contained in the help files. It is accessible via the -Rezilla Help command in the Help menu when Rezilla is running. -You can also read it online +Rezilla Help command in the Help menu when Rezilla is running. You can also +read it online in english <http://perso.orange.fr/bdesgraupes/DocHTML/EN/RezillaHelp/index.html> or in french <http://perso.orange.fr/bdesgraupes/DocHTML/FR/RezillaHelp/index.html>. Rezilla is a free software. -See the licensing terms in the License.terms file or click on the -License button in the About box of the application. +See the licensing terms in the License.terms file or click on the License +button in the About box of the application. The official home page for the project is at SourceForge: <http://sourceforge.net/projects/rezilla> -There is a users mailing list where any kind of problems about -Rezilla can be discussed, in particular the questions related to its -scriptability and AppleScript syntax. +There is a users mailing list where any kind of problems about Rezilla can +be discussed, in particular the questions related to its scriptability and +AppleScript syntax. Subscribe here <http://lists.sourceforge.net/lists/listinfo/rezilla-users> |
From: Bernard D. <bde...@us...> - 2006-11-28 07:23:23
|
Update of /cvsroot/rezilla/RezillaSource/Rezilla_Src/Documents In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19926 Modified Files: CRezMapDoc.cp Log Message: Init number in AskImplode Index: CRezMapDoc.cp =================================================================== RCS file: /cvsroot/rezilla/RezillaSource/Rezilla_Src/Documents/CRezMapDoc.cp,v retrieving revision 1.140 retrieving revision 1.141 diff -u -d -r1.140 -r1.141 --- CRezMapDoc.cp 24 Nov 2006 11:53:01 -0000 1.140 +++ CRezMapDoc.cp 28 Nov 2006 07:23:20 -0000 1.141 @@ -2,7 +2,7 @@ // CRezMapDoc.cp // // Created: 2003-04-29 07:11:00 -// Last modification: 2006-11-09 11:46:19 +// Last modification: 2006-11-28 07:15:12 // Author: Bernard Desgraupes // e-mail: <bde...@us...> // www: <http://rezilla.sourceforge.net/> @@ -2381,7 +2381,7 @@ bool CRezMapDoc::AskImplode(short &outID) { - SInt32 number; + SInt32 number = 0; bool result = UModalDialogs::AskForOneNumber(this, PPob_RezIDChooser, item_RezIDChooserField, number); outID = (short) number; |
From: Bernard D. <bde...@us...> - 2006-11-28 07:22:39
|
Update of /cvsroot/rezilla/RezillaSource/Rezilla_Rsrc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19539 Modified Files: Rezilla_icons.r Log Message: Fixed incomplete derezed icons Index: Rezilla_icons.r =================================================================== RCS file: /cvsroot/rezilla/RezillaSource/Rezilla_Rsrc/Rezilla_icons.r,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Rezilla_icons.r 13 Mar 2006 10:15:00 -0000 1.5 +++ Rezilla_icons.r 28 Nov 2006 07:22:35 -0000 1.6 @@ -1,7 +1,7 @@ // =========================================================================== -// Rezilla_icns.r +// Rezilla_icons.r // Created: 2004-02-28 22:51:23 -// Last modification: 2006-03-12 13:31:21 +// Last modification: 2006-11-28 08:10:53 // Author: Bernard Desgraupes // e-mail: <bde...@us...> // www: <http://rezilla.sourceforge.net/> @@ -101,231 +101,175 @@ // Icons data // ========== -resource 'ics#' (128, "rezilla_logo", purgeable) { - { /* array: 2 elements */ - /* [1] */ - $"0000 0180 0240 1428 1C38 0C50 1348 1984" - $"210C 3288 1450 0C28 0C30 03C0", - /* [2] */ - $"0000 0380 13D0 1FF0 0FF0 0FF0 1FF8 3FFC" - $"3FFC 3FFC 3FFC 1FF8 0FF0 03C0 03C0" - } +data 'ics#' (128, "rezilla_logo", purgeable) { + $"00000180024014281c380c5013481984210c328814500c28" + $"0c3003c0000000000000038013d01ff00ff00ff01ff83ffc" + $"3ffc3ffc3ffc1ff80ff003c003c00000" }; -resource 'ics#' (1501, "file locked") { - { /* array: 2 elements */ - /* [1] */ - $"0000 0000 0000 0000 0380 0440 0440 0FE0" - $"0FE0 0FE0 0FE0 0FE0 0FE0", - /* [2] */ - $"0000 0000 0000 0000 0380 0440 0440 0FE0" - $"0FE0 0FE0 0FE0 0FE0 0FE0" - } +data 'ics#' (1500, "file unlocked") { + $"0000000000700088008800881fc01bc01bc01bc01bc01fc0" + $"00000000000000000000000000700088008800881fc01fc0" + $"1fc01fc01fc01fc00000000000000000" }; -resource 'ics#' (1500, "file unlocked") { - { /* array: 2 elements */ - /* [1] */ - $"0000 0000 0070 0088 0088 0088 1FC0 1FC0" - $"1FC0 1FC0 1FC0 1FC0", - /* [2] */ - $"0000 0000 0070 0088 0088 0088 1FC0 1FC0" - $"1FC0 1FC0 1FC0 1FC0" - } +data 'ics#' (1501, "file locked") { + $"00000000000000000380044004400fe00de00de00de00de0" + $"0fe000000000000000000000000000000380044004400fe0" + $"0fe00fe00fe00fe00fe0000000000000" }; data 'ics4' (128, "rezilla_logo", purgeable) { - $"0000 0000 0000 0000 0000 00CD C000 0000" - $"000D 00DC DD0D 0000 000D DDCC CDEC 0000" - $"0000 DE0C CCEC 0000 0000 DDDC CDDE 0000" - $"000D C0DD CD0C D000 00DD 0C0E E0C0 DC00" - $"00EC CCCE DCCC DE00 00EE CCDC DCCC ED00" - $"00C2 EDD0 0ECD 2C00 000E DE0C CCAC D000" - $"0000 DA20 02AD 0000 0000 0CDD DDC0 0000" - $"0000 00FF FF" + $"0000000000000000000000cdc0000000000d00dcdd0d0000" + $"000dddcccdec00000000de0cccec00000000dddccdde0000" + $"000dc0ddcd0cd00000dd0c0ee0c0dc0000eccccedcccde00" + $"00eeccdcdccced0000c2edd00ecd2c00000ede0cccacd000" + $"0000da2002ad000000000cddddc00000000000ffff000000" + $"0000000000000000" }; -data 'ics4' (1500) { - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0EEE 0000 0000 0000 E000 E000" - $"0000 0000 E000 E000 0000 0000 E000 E000" - $"000D DDDD EF00 0000 000D C0DD EF00 0000" - $"000D C0DD EF00 0000 000D C0DD EF00 0000" - $"000D C0DD EF00 0000 000F FFFF FF" +data 'ics4' (1500, "file unlocked") { + $"00000000000000000000000000000000000000000eee0000" + $"00000000e000e00000000000e000e00000000000e000e000" + $"000dddddef000000000dc0ddef000000000dc0ddef000000" + $"000dc0ddef000000000dc0ddef000000000fffffff000000" + $"000000000000000000000000000000000000000000000000" + $"0000000000000000" }; -data 'ics4' (1501) { - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 00EE E000 0000 0000 0E00 0E00 0000" - $"0000 0E00 0E00 0000 0000 DDDD DEF0 0000" - $"0000 DC0D DEF0 0000 0000 DC0D DEF0 0000" - $"0000 DC0D DEF0 0000 0000 DC0D DEF0 0000" - $"0000 FFFF FFF0" +data 'ics4' (1501, "file locked") { + $"000000000000000000000000000000000000000000000000" + $"0000000000000000000000eee000000000000e000e000000" + $"00000e000e0000000000dddddef000000000dc0ddef00000" + $"0000dc0ddef000000000dc0ddef000000000dc0ddef00000" + $"0000fffffff0000000000000000000000000000000000000" + $"0000000000000000" }; data 'ics8' (128, "rezilla_logo", purgeable) { - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 F6FA F800 0000 0000 0000" - $"0000 0056 0000 812B 56F9 F556 0000 0000" - $"0000 0056 F981 2B2A 2AF9 FBF7 0000 0000" - $"0000 0000 F9FC F52A 2AF6 AC2B 0000 0000" - $"0000 0000 81FA 562A 2A56 F9FB 0000 0000" - $"0000 0081 F700 FA56 2B81 F5F7 F900 0000" - $"0000 5656 F52A F5FB FCF5 2AF5 81F6 0000" - $"0000 AC2B 2A2A 2AFB FA2A 2A2A F9FB 0000" - $"0000 FCFB F62A FAF8 81F8 2AF7 FBFA 0000" - $"0000 F816 FBF9 56F5 F5FB F781 16F7 0000" - $"0000 00FB FAAC F52A 2AF7 FDF8 FA00 0000" - $"0000 0000 81FD 16F5 F516 FD81 0000 0000" - $"0000 0000 002B FA81 FA81 F600 0000 0000" - $"0000 0000 0000 FFFF FFFF" + $"00000000000000000000000000000000000000000000f6fa" + $"f800000000000000000000560000812b56f9f55600000000" + $"00000056f9812b2a2af9fbf70000000000000000f9fcf52a" + $"2af6ac2b000000000000000081fa562a2a56f9fb00000000" + $"00000081f700fa562b81f5f7f900000000005656f52af5fb" + $"fcf52af581f600000000ac2b2a2a2afbfa2a2a2af9fb0000" + $"0000fcfbf62afaf881f82af7fbfa00000000f816fbf956f5" + $"f5fbf78116f70000000000fbfaacf52a2af7fdf8fa000000" + $"0000000081fd16f5f516fd810000000000000000002bfa81" + $"fa81f60000000000000000000000ffffffff000000000000" + $"00000000000000000000000000000000" }; data 'ics8' (1500, "file unlocked") { - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 00FB FBFB 0000 0000" - $"0000 0000 0000 0000 FB00 0000 FB00 0000" - $"0000 0000 0000 0000 FB00 0000 FB00 0000" - $"0000 0000 0000 0000 FB00 0000 FB00 0000" - $"0000 00FA FAFA FAFA FCFF 0000 0000 0000" - $"0000 00FA F700 F9FA FBFF 0000 0000 0000" - $"0000 00FA F700 F9FA FBFF 0000 0000 0000" - $"0000 00FA F700 F9FA FBFF 0000 0000 0000" - $"0000 00FA F700 F9FA FBFF 0000 0000 0000" - $"0000 00FF FFFF FFFF FFFF" + $"000000000000000000000000000000000000000000000000" + $"0000000000000000000000000000000000fbfbfb00000000" + $"0000000000000000fb000000fb0000000000000000000000" + $"fb000000fb0000000000000000000000fb000000fb000000" + $"000000fafafafafafcff000000000000000000faf700f9fa" + $"fbff000000000000000000faf700f9fafbff000000000000" + $"000000faf700f9fafbff000000000000000000faf700f9fa" + $"fbff000000000000000000ffffffffffffff000000000000" + $"000000000000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"00000000000000000000000000000000" }; data 'ics8' (1501, "file locked") { - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 FBFB FB00 0000 0000 0000" - $"0000 0000 00FB 0000 00FB 0000 0000 0000" - $"0000 0000 00FB 0000 00FB 0000 0000 0000" - $"0000 0000 FAFA FAF9 FAFC FF00 0000 0000" - $"0000 0000 FAF7 00F9 FAFB FF00 0000 0000" - $"0000 0000 FAF7 00F9 FAFB FF00 0000 0000" - $"0000 0000 FAF7 00F9 FAFB FF00 0000 0000" - $"0000 0000 FAF7 00F9 FAFB FF00 0000 0000" - $"0000 0000 FFFF FFFF FFFF FF" + $"000000000000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"00000000000000000000000000000000000000000000fbfb" + $"fb000000000000000000000000fb000000fb000000000000" + $"0000000000fb000000fb00000000000000000000fafafaf9" + $"fafcff000000000000000000faf700f9fafbff0000000000" + $"00000000faf700f9fafbff000000000000000000faf700f9" + $"fafbff000000000000000000faf700f9fafbff0000000000" + $"00000000ffffffffffffff00000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"00000000000000000000000000000000" }; data 'icl4' (128, "rezilla_logo", purgeable) { - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 000F 0000 0000 0000 0000" - $"0000 0000 0000 00CD C000 0000 0000 0000" - $"0000 0000 0000 0EEE ED00 0000 0000 0000" - $"0000 0000 0000 CED0 DAE0 0000 0000 0000" - $"0000 0000 000C FDC0 0DED 00CC 0000 0000" - $"0000 0000 C0CE D00C 00DE DCFC 0000 0000" - $"0000 000D ACEE C0C0 C00D FEEC 0000 0000" - $"0000 000C EFEC 0C00 0C0C EAE0 0000 0000" - $"0000 0000 CEED 000C 00C0 DEE0 0000 0000" - $"0000 0000 DEED C000 C00C EEEE 0000 0000" - $"0000 000C FDDF DC0C 000D FCDF C000 0000" - $"0000 00CE DC0D EDC0 0CDE C0CD F000 0000" - $"0000 0CEE C000 CFD0 CCED C00C DE00 0000" - $"0000 0EE0 0C0C 0DED CEE0 0C00 DEC0 0000" - $"0000 EEC0 C000 C0DF EECC 00C0 0EA0 0000" - $"000C EE0C 00C0 00DE FC00 C00C 0DEE 0000" - $"000E AD00 0C00 C0DE ECC0 0C00 0CEF C000" - $"000E FEC0 00C0 0DAE EE00 C0C0 CEFE D000" - $"000C FEEC 0C00 CFD0 DEDC 0000 DFCE C000" - $"000C FCEE D00C ADC0 0DFD 0C0E ECCE C000" - $"0000 EE0E EDCE DC0C 00DE D0DE D0ED 0000" - $"0000 0FD0 EEEE C000 C00E EDED 0DE0 0000" - $"0000 0CFC CFEE 00C0 0C0C FEE0 DED0 0000" - $"0000 00DF DEFD 0C00 C0CC EFDC ED00 0000" - $"0000 000D FFEE C00C 000D EEEF D000 0000" - $"0000 0000 0EFF DC00 0CCF AFE0 0000 0000" - $"0000 0000 00CE FFEE EEFF EC00 0000 0000" - $"0000 0000 0000 0DDD DDC0" + $"00000000000000000000000000000000000000000000000f" + $"000000000000000000000000000000cdc000000000000000" + $"0000000000000eeeed00000000000000000000000000ced0" + $"dae000000000000000000000000cfdc00ded00cc00000000" + $"00000000c0ced00c00dedcfc000000000000000daceec0c0" + $"c00dfeec000000000000000cefec0c000c0ceae000000000" + $"00000000ceed000c00c0dee00000000000000000deedc000" + $"c00ceeee000000000000000cfddfdc0c000dfcdfc0000000" + $"000000cedc0dedc00cdec0cdf000000000000ceec000cfd0" + $"ccedc00cde00000000000ee00c0c0dedcee00c00dec00000" + $"0000eec0c000c0dfeecc00c00ea00000000cee0c00c000de" + $"fc00c00c0dee0000000ead000c00c0deecc00c000cefc000" + $"000efec000c00daeee00c0c0cefed000000cfeec0c00cfd0" + $"dedc0000dfcec000000cfceed00cadc00dfd0c0eeccec000" + $"0000ee0eedcedc0c00ded0ded0ed000000000fd0eeeec000" + $"c00eeded0de0000000000cfccfee00c00c0cfee0ded00000" + $"000000dfdefd0c00c0ccefdced0000000000000dffeec00c" + $"000deeefd0000000000000000effdc000ccfafe000000000" + $"0000000000ceffeeeeffec00000000000000000000000ddd" + $"ddc000000000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"0000000000000000" }; data 'icl8' (128, "rezilla_logo", purgeable) { - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0000 F756" - $"F700 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 0081 FDFC" - $"ACF9 0000 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 F8AC F900" - $"F9FD 8100 0000 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 00F7 FDFA F62A" - $"00F8 AC81 0000 F8F7 0000 0000 0000 0000" - $"0000 0000 0000 0000 F600 F7AC FA00 2A00" - $"2A00 F8AC FA2B FDF8 0000 0000 0000 0000" - $"0000 0000 0000 0081 FDF8 FCFC F62A 002A" - $"002A 00F9 FDFD ACF5 0000 0000 0000 0000" - $"0000 0000 0000 00F6 ACFD ACF8 2A00 2A00" - $"2A00 2A2B ACAC FB00 0000 0000 0000 0000" - $"0000 0000 0000 0000 F8AC FDF7 002A 002A" - $"002A 002A 81AC FC00 0000 0000 0000 0000" - $"0000 0000 0000 0000 F9AC FCFB 2A00 2A00" - $"2A00 2AF6 ACFB FD81 0000 0000 0000 0000" - $"0000 0000 0000 00F7 FDF9 56FD FB2A 002A" - $"002A 0081 FD2B FAFE F800 0000 0000 0000" - $"0000 0000 0000 2BFD 8100 2A56 FD81 2A00" - $"2A00 56FD F800 F6FA FDF5 0000 0000 0000" - $"0000 0000 00F6 FDFB 002A 002A F8AC FBF6" - $"00F7 ACFA 002A 00F6 FBFB 0000 0000 0000" - $"0000 0000 F5FC FBF6 2A00 2A00 2AF9 ACFA" - $"F7AC FBF6 2A00 2A00 F8AC F700 0000 0000" - $"0000 0000 81AC F72A 00F6 002A 002A FAFD" - $"ACAC 2B2A 002A 002A 00FB ACF5 0000 0000" - $"0000 00F7 FD81 2A00 2A00 2A00 2A00 56AC" - $"FDF8 2A00 2A00 2A00 2A56 FDFB 0000 0000" - $"0000 00FC ACF9 002A 002A 002A 002A F9FD" - $"FC2B 002A 002A 002A 0056 ACFE F800 0000" - $"0000 00FC FDAC 2B00 2A00 2A00 2AF9 FD81" - $"ACFC 2A00 2A00 2A00 F6FB FDAC F900 0000" - $"0000 0056 FDFD ACF7 002A 002A 56AC 812A" - $"56AC FBF6 002A 002A FAFE F7FB F800 0000" - $"0000 00F6 FFF7 FBAC F800 2A2B AC81 2A00" - $"2AF9 FDF9 2A00 F681 FDF8 2BAC F500 0000" - $"0000 0000 FBFC 2B81 FD56 F6FC 81F6 002A" - $"002A F9FD F82A F9AC FAF5 FCF9 0000 0000" - $"0000 0000 F6FF F900 FCAC FCFC 2B00 2A00" - $"2A00 2AFB FDF9 ACF9 F5F9 ACF5 0000 0000" - $"0000 0000 00F8 FFF7 F7FD ACFC 002A 002A" - $"002A 0056 FDAC FBF5 F7FD F800 0000 0000" - $"0000 0000 0000 FAFE F9AC FDFA 2A00 2A00" - $"2A00 2AF7 FDFE F9F8 FD56 0000 0000 0000" - $"0000 0000 0000 0056 FFFE FCAC F62A 002A" - $"002A 00FA FCAC FDFD 5600 0000 0000 0000" - $"0000 0000 0000 0000 F6FC FFFE 81F6 2A00" - $"2A00 F7FD FEFD FBF6 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 F8AC FFFF ACFC" - $"FCAC FFFE FCF8 0000 0000 0000 0000 0000" - $"0000 0000 0000 0000 0000 0000 F5F8 F9F9" - $"FA56 F8F6" + $"000000000000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"000000000000f756f7000000000000000000000000000000" + $"0000000000000000000000000081fdfcacf9000000000000" + $"0000000000000000000000000000000000000000f8acf900" + $"f9fd81000000000000000000000000000000000000000000" + $"000000f7fdfaf62a00f8ac810000f8f70000000000000000" + $"0000000000000000f600f7acfa002a002a00f8acfa2bfdf8" + $"00000000000000000000000000000081fdf8fcfcf62a002a" + $"002a00f9fdfdacf5000000000000000000000000000000f6" + $"acfdacf82a002a002a002a2bacacfb000000000000000000" + $"0000000000000000f8acfdf7002a002a002a002a81acfc00" + $"00000000000000000000000000000000f9acfcfb2a002a00" + $"2a002af6acfbfd81000000000000000000000000000000f7" + $"fdf956fdfb2a002a002a0081fd2bfafef800000000000000" + $"0000000000002bfd81002a56fd812a002a0056fdf800f6fa" + $"fdf50000000000000000000000f6fdfb002a002af8acfbf6" + $"00f7acfa002a00f6fbfb00000000000000000000f5fcfbf6" + $"2a002a002af9acfaf7acfbf62a002a00f8acf70000000000" + $"0000000081acf72a00f6002a002afafdacac2b2a002a002a" + $"00fbacf500000000000000f7fd812a002a002a002a0056ac" + $"fdf82a002a002a002a56fdfb00000000000000fcacf9002a" + $"002a002a002af9fdfc2b002a002a002a0056acfef8000000" + $"000000fcfdac2b002a002a002af9fd81acfc2a002a002a00" + $"f6fbfdacf900000000000056fdfdacf7002a002a56ac812a" + $"56acfbf6002a002afafef7fbf8000000000000f6fff7fbac" + $"f8002a2bac812a002af9fdf92a00f681fdf82bacf5000000" + $"00000000fbfc2b81fd56f6fc81f6002a002af9fdf82af9ac" + $"faf5fcf90000000000000000f6fff900fcacfcfc2b002a00" + $"2a002afbfdf9acf9f5f9acf5000000000000000000f8fff7" + $"f7fdacfc002a002a002a0056fdacfbf5f7fdf80000000000" + $"000000000000fafef9acfdfa2a002a002a002af7fdfef9f8" + $"fd560000000000000000000000000056fffefcacf62a002a" + $"002a00fafcacfdfd56000000000000000000000000000000" + $"f6fcfffe81f62a002a00f7fdfefdfbf60000000000000000" + $"00000000000000000000f8acffffacfcfcacfffefcf80000" + $"0000000000000000000000000000000000000000f5f8f9f9" + $"fa56f8f60000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"000000000000000000000000000000000000000000000000" + $"00000000000000000000000000000000" }; -resource 'ICN#' (128, "rezilla_logo", purgeable) { - { /* array: 2 elements */ - /* [1] */ - $"0000 0000 0000 0000 0001 0000 0006 8000" - $"0005 6000 000E 5200 0110 2A00 01A8 9E00" - $"00E0 0C00 0072 2600 0051 0B00 00D8 9B00" - $"018C 3180 0326 2240 0403 60A0 0689 C8E0" - $"0802 8430 1E63 E230 1A06 A070 0E8E E8C8" - $"0B18 5190 0DAA 3330 04D0 1A40 0279 8EA0" - $"0360 0CC0 00FA 3F00 0070 1C00 001F F800" - $"0002 80", - /* [2] */ - $"0000 0000 0001 0000 0003 8000 0007 C000" - $"000F E000 001F F300 00BF FB00 01FF FF00" - $"01FF FE00 00FF FE00 00FF FF00 01FF FF00" - $"03FF FF80 07FF FFC0 07FF FFC0 0FFF FFE0" - $"1FFF FFF0 1FFF FFF0 1FFF FFF0 1FFF FFF0" - $"1FFF FFF0 0FFF FFE0 07FF FFE0 07FF FFC0" - $"03FF FF80 01FF FF00 007F FE00 003F F800" - $"0007 E0" - } +data 'ICN#' (128, "rezilla_logo", purgeable) { + $"0000000000000000000100000006800000056000000e5200" + $"01102a0001a89e0000e00c000072260000510b0000d89b00" + $"018c318003262240040360a00689c8e0080284301e63e230" + $"1a06a0700e8ee8c80b1851900daa333004d01a4002798ea0" + $"03600cc000fa3f0000701c00001ff8000007e00000000000" + $"00000000000000000000000000010000000380000007c000" + $"000fe000001ff30000bffb0001ffff0001fffe0000fffe00" + $"00ffff0001ffff0003ffff8007ffffc007ffffc00fffffe0" + $"1ffffff01ffffff01ffffff01ffffff01ffffff00fffffe0" + $"07ffffe007ffffc003ffff8001ffff00007ffe00003ff800" + $"0007e000000000000000000000000000" }; |