annotate package-files/osx/Info.plist @ 25:a495f9ea498b mac-open

Initial attempts to make it respond to MacOS open message (not working).
author David Barts <n5jrn@me.com>
date Sun, 13 Dec 2020 10:29:08 -0800
parents 92afaa27f40a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
2 <plist version="1.0">
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
3 <!-- see: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/AboutInformationPropertyListFiles.html -->
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
4 <dict>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
5 <!-- Apple says the following are a must -->
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
6 <key>CFBundleDevelopmentRegion</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
7 <string>English</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
8 <key>CFBundleDisplayName</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
9 <string>@app.name@</string>
25
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
10 <key>CFBundleDocumentTypes</key>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
11 <array>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
12 <dict>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
13 <key>CFBundleTypeName</key>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
14 <string>@app.name@ Document</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
15 <key>CFBundleTypeRole</key>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
16 <string>Editor</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
17 <key>LSItemContentTypes</key>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
18 <array>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
19 <string>com.compuserve.gif</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
20 <string>com.microsoft.bmp</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
21 <string>public.jpeg</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
22 <string>public.png</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
23 </array>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
24 <key>CFBundleTypeExtensions</key>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
25 <array>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
26 <string>*</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
27 </array>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
28 <key>CFBundleTypeOSTypes</key>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
29 <array>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
30 <string>GIFf</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
31 <string>BMPf</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
32 <string>JPEG</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
33 <string>PNGf</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
34 <string>****</string>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
35 </array>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
36 </dict>
a495f9ea498b Initial attempts to make it respond to MacOS open message (not working).
David Barts <n5jrn@me.com>
parents: 23
diff changeset
37 </array>
23
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
38 <key>CFBundleExecutable</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
39 <string>JavaApplicationStub</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
40 <key>CFBundleIconFile</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
41 <string>@app.name@.icns</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
42 <key>CFBundleIdentifier</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
43 <string>@app.domain@</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
44 <key>CFBundleInfoDictionaryVersion</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
45 <string>6.0</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
46 <key>CFBundleName</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
47 <string>@app.name@</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
48 <key>CFBundlePackageType</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
49 <string>APPL</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
50 <key>CFBundleShortVersionString</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
51 <string>@app.version@</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
52 <key>CFBundleVersion</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
53 <string>@app.version@</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
54 <key>NSHumanReadableCopyright</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
55 <string>@app.copyright@</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
56 <!-- most package builders throw the following in -->
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
57 <key>CFBundleAllowMixedLocalizations</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
58 <string>false</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
59 <key>LSApplicationCategoryType</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
60 <string>public.app-category.photography</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
61 <!-- JavaApplicationStub wants the following stuff -->
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
62 <key>JVMMainClassName</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
63 <string>@app.entry@</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
64 <key>JVMClassPath</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
65 <string>Contents/Java/@lc.app.name@.jar</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
66 <key>JVMVersion</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
67 <string>@jvm.version@+</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
68 <key>JVMOptions</key>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
69 <array>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
70 <string>-Dapple.awt.textantialiasing=true</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
71 <string>-Dapple.laf.useScreenMenuBar=true</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
72 <string>-Dapple.awt.antialiasing=true</string>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
73 </array>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
74 </dict>
92afaa27f40a Mac app support.
David Barts <n5jrn@me.com>
parents:
diff changeset
75 </plist>