Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update version strings/Mac |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
51384e28d4576c0445e5dac369c7b707 |
User & Date: | kevin 2018-08-21 12:41:52 |
Context
2019-11-29
| ||
02:28 | More tweaks check-in: 8c55ae041a user: kevin tags: trunk | |
2018-08-21
| ||
12:41 | Update version strings/Mac check-in: 51384e28d4 user: kevin tags: trunk | |
02:37 | Update documentation on code repo check-in: d2b5557877 user: kevin tags: trunk | |
Changes
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) 2018 WordTech Communications LLC</string> <key>NSPrincipalClass</key> <string>NSApplication</string> <key>NSHighResolutionCapable</key> <true/> <key>LSMinimumSystemVersionByArchitecture</key> <dict> <key>x86_64</key> <string>10.13</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) 2018 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 | <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> <string>$1</string> <key>CFBundleVersion</key> <string>$1</string> <key>LSMinimumSystemVersion</key> <string>10.13</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>FileMorph.sdef</string> </dict> </plist> EOT |
︙ | ︙ |