summaryrefslogtreecommitdiff
path: root/res/MacOSXBundleInfo.plist.in
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-07-21 15:06:52 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-07-21 15:07:38 +0300
commitd773b499e595a43b9b1ae449262dcf13cabf2d02 (patch)
treeb1baeb12025a04f8316636b5d0ab18e30ceedb2c /res/MacOSXBundleInfo.plist.in
Initial commit
Borrowing the app skeleton from Bitwise Harmony.
Diffstat (limited to 'res/MacOSXBundleInfo.plist.in')
-rw-r--r--res/MacOSXBundleInfo.plist.in55
1 files changed, 55 insertions, 0 deletions
diff --git a/res/MacOSXBundleInfo.plist.in b/res/MacOSXBundleInfo.plist.in
new file mode 100644
index 00000000..74b1662e
--- /dev/null
+++ b/res/MacOSXBundleInfo.plist.in
@@ -0,0 +1,55 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5 <key>CFBundleDevelopmentRegion</key>
6 <string>English</string>
7 <key>CFBundleExecutable</key>
8 <string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
9 <key>CFBundleGetInfoString</key>
10 <string>${MACOSX_BUNDLE_INFO_STRING}</string>
11 <key>CFBundleIconFile</key>
12 <string>${MACOSX_BUNDLE_ICON_FILE}</string>
13 <key>CFBundleIdentifier</key>
14 <string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
15 <key>CFBundleInfoDictionaryVersion</key>
16 <string>6.0</string>
17 <key>CFBundleLongVersionString</key>
18 <string>${MACOSX_BUNDLE_LONG_VERSION_STRING}</string>
19 <key>CFBundleName</key>
20 <string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
21 <key>CFBundlePackageType</key>
22 <string>APPL</string>
23 <key>CFBundleShortVersionString</key>
24 <string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
25 <key>CFBundleSignature</key>
26 <string>????</string>
27 <key>CFBundleVersion</key>
28 <string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
29 <key>CSResourcesFileMapped</key>
30 <true/>
31 <key>NSHumanReadableCopyright</key>
32 <string>${MACOSX_BUNDLE_COPYRIGHT}</string>
33 <key>NSHighResolutionCapable</key>
34 <true/>
35 <key>CFBundleDocumentTypes</key>
36 <array>
37 <dict>
38 <key>CFBundleTypeExtensions</key>
39 <array>
40 <string>gmi</string>
41 </array>
42 <key>CFBundleTypeIconFile</key>
43 <string>text-gemini.icns</string>
44 <key>CFBundleTypeName</key>
45 <string>Gemini Text File</string>
46 <key>CFBundleTypeRole</key>
47 <string>Viewer</string>
48 <key>LSHandlerRank</key>
49 <string>Default</string>
50 <key>LSTypeIsPackage</key>
51 <false/>
52 </dict>
53 </array>
54</dict>
55</plist>