Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More tweaks to help |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7c99ff508cdc39a2ac92e6fcb94da6de |
User & Date: | kevin 2020-04-24 12:59:29 |
Context
2020-04-25
| ||
17:09 | Update support files check-in: 60f9bbc54a user: kevin tags: trunk | |
2020-04-24
| ||
12:59 | More tweaks to help check-in: 7c99ff508c user: kevin tags: trunk | |
02:33 | More tweaks to help check-in: 66db0a4592 user: kevin tags: trunk | |
Changes
Changes to FileMorph User Help.docx.
cannot compute difference between binary files
Added Wish.sdef.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd"> <!-- Copyright (c) 1997 Sun Microsystems, Inc. Copyright 2009 Kevin Walzer/WordTech Communications LLC. Copyright (c) 2009 Daniel A. Steffen <das@users.sourceforge.net> See the file "license.terms" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. --> <dictionary title="Wish Terminology"> <suite name="Standard Suite" code="reqd" description="Common commands for all applications."> <command name="open" code="aevtodoc" description="Open a document."> <direct-parameter description="The file(s) to be opened."> <type type="file"/> <type type="file" list="yes"/> </direct-parameter> </command> <command name="print" code="aevtpdoc" description="Print a document."> <direct-parameter description="The file(s) to be printed."> <type type="file" list="yes"/> <type type="specifier"/> </direct-parameter> </command> <command name="quit" code="aevtquit" description="Quit the application."/> </suite> <suite name="Wish Suite" code="WIsH" description="Commands for the Wish application."> <command name="do script" code="miscdosc" description="Execute a Tcl script."> <direct-parameter description="Script to execute" type="text"> <type type="text"/> </direct-parameter> <result description="Result"> <type type="text"/> </result> </command> <command name="open location" code="GURLGURL" description="Open a URL."> <direct-parameter description="URL" type="text"> <type type="text"/> </direct-parameter> <result description="Result"> <type type="text"/> </result> </command> </suite> </dictionary> |
Changes to buildapp.sh.
︙ | ︙ | |||
48 49 50 51 52 53 54 | <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>FileMorph</string> <key>CFBundleGetInfoString</key> | | | | | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>FileMorph</string> <key>CFBundleGetInfoString</key> <string>FileMorph $1 (c) 2020 WordTech Communications LLC</string> <key>NSPrincipalClass</key> <string>NSApplication</string> <key>NSHighResolutionCapable</key> <true/> <key>LSMinimumSystemVersionByArchitecture</key> <dict> <key>x86_64</key> <string>10.15</string> </dict> <key>LSArchitecturePriority</key> <array> <string>x86_64</string> </array> <key>LSApplicationCategoryType</key> <string>public.app-category.utilities</string> <key>NSHumanReadableCopyright</key> <string>(c) 2020 WordTech Communications LLC</string> <key>CFBundleIconFile</key> <string>FileMorph.icns</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleDocumentTypes</key> <array> <dict> |
︙ | ︙ | |||
98 99 100 101 102 103 104 | <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> <string>$1</string> <key>CFBundleVersion</key> <string>$1</string> <key>LSMinimumSystemVersion</key> | | | | | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> <string>$1</string> <key>CFBundleVersion</key> <string>$1</string> <key>LSMinimumSystemVersion</key> <string>10.15</string> <key>LSRequiresCarbon</key> <true/> <key>NSSupportsAutomaticTermination</key> <string>YES</string> <key>NSSupportsSuddenTermination</key> <string>YES</string> <key>NSAppleScriptEnabled</key> <true/> <key>OSAScriptingDefinition</key> <string>Wish.sdef</string> <key>CFBundleHelpBookFolder</key> <string>FileMorph User Help.help</string> <key>CFBundleHelpBookName</key> <string>FileMorph User Help</string> </dict> </plist> EOT quickbundle.pl file.ini #copy additional files, resources to app bundle cp -f filemorph.icns FileMorph.app/Contents/Resources/filemorph.icns cp -f Wish.sdef FileMorph.app/Contents/Resources/Wish.sdef cp -R -f "FileMorph User Help.html" "FileMorph User Help.help/Contents/Resources/FileMorph User Help.html" cp -R -f "FileMorph User Help.fld" "FileMorph User Help.help/Contents/Resources/" cp -R -f "FileMorph User Help.help" FileMorph.app/Contents/Resources/"FileMorph User Help.help" |
︙ | ︙ |