comparison package-files/osx/Info.plist @ 39:89d7f4d91f67

Got a working, non-bloated Apple Mac bundle!
author David Barts <n5jrn@me.com>
date Fri, 01 May 2020 23:06:04 -0700
parents
children 4076f1bbf21d
comparison
equal deleted inserted replaced
38:d794ef80f9b0 39:89d7f4d91f67
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <plist version="1.0">
3 <!-- see: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/AboutInformationPropertyListFiles.html -->
4 <dict>
5 <!-- Apple says the following are a must -->
6 <key>CFBundleDevelopmentRegion</key>
7 <string>English</string>
8 <key>CFBundleDisplayName</key>
9 <string>@app.name@</string>
10 <key>CFBundleExecutable</key>
11 <string>JavaApplicationStub</string>
12 <key>CFBundleIconFile</key>
13 <string>@app.name@.icns</string>
14 <key>CFBundleIdentifier</key>
15 <string>@app.domain@</string>
16 <key>CFBundleInfoDictionaryVersion</key>
17 <string>6.0</string>
18 <key>CFBundleName</key>
19 <string>@app.name@</string>
20 <key>CFBundlePackageType</key>
21 <string>APPL</string>
22 <key>CFBundleShortVersionString</key>
23 <string>@app.version@</string>
24 <key>CFBundleVersion</key>
25 <string>@app.version@</string>
26 <key>NSHumanReadableCopyright</key>
27 <string>Copyright © 2020, David Barts</string>
28 <!-- most package builders throw the following in -->
29 <key>CFBundleAllowMixedLocalizations</key>
30 <string>false</string>
31 <key>LSApplicationCategoryType</key>
32 <string>public.app-category.photography</string>
33 <!-- JavaApplicationStub wants the following stuff -->
34 <key>JVMMainClassName</key>
35 <string>@app.entry@</string>
36 <key>JVMClassPath</key>
37 <string>Contents/Java/@lc.app.name@.jar</string>
38 <key>JVMVersion</key>
39 <string>@jvm.version@+</string>
40 <key>JVMOptions</key>
41 <array>
42 <string>-Dapple.awt.textantialiasing=true</string>
43 <string>-Dapple.laf.useScreenMenuBar=true</string>
44 <string>-Dapple.awt.antialiasing=true</string>
45 </array>
46 </dict>
47 </plist>