Mercurial > cgi-bin > hgweb.cgi > ImagePrep
comparison package-files/osx/Info.plist @ 23:92afaa27f40a
Mac app support.
author | David Barts <n5jrn@me.com> |
---|---|
date | Tue, 24 Nov 2020 16:45:37 -0800 |
parents | |
children | a495f9ea498b |
comparison
equal
deleted
inserted
replaced
22:d3979a2155a8 | 23:92afaa27f40a |
---|---|
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>@app.copyright@</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> |