blob: 7dbb77d1512687113d1152a8aad735f0ef541a97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">
<dict>
<key>CFBundleName</key>
<string>TeleGPS</string>
<key>CFBundleVersion</key>
<string>@VERSION@</string>
<key>CFBundleAllowMixedLocalizations</key>
<string>true</string>
<key>CFBundleExecutable</key>
<string>JavaApplicationStub</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleIdentifier</key>
<string>org.altusmetrum.telegps</string>
<key>CFBundleSignature</key>
<string>Altu</string>
<key>CFBundleGetInfoString</key>
<string>TeleGPS version @VERSION@</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIconFile</key>
<string>TeleGPS.icns</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>Telemetry</string>
<key>CFBundleTypeIconFile</key>
<string>TeleGPS.icns</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>telem</string>
</array>
<key>CFBundleTypeRole</key>
<string>Editor</string>
</dict>
<dict>
<key>CFBundleTypeName</key>
<string>Eeprom</string>
<key>CFBundleTypeIconFile</key>
<string>TeleGPS.icns</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>eeprom</string>
</array>
<key>CFBundleTypeRole</key>
<string>Editor</string>
</dict>
</array>
<key>Java</key>
<dict>
<key>MainClass</key>
<string>org.altusmetrum.telegps.TeleGPS</string>
<key>JVMVersion</key>
<string>1.5+</string>
<key>ClassPath</key>
<array>
<string>$JAVAROOT/telegps.jar</string>
<string>$JAVAROOT/freetts.jar</string>
</array>
<key>VMOptions</key>
<array>
<string>-Xms512M</string>
<string>-Xmx512M</string>
<string>-Dosgi.clean=true</string>
</array>
</dict>
</dict>
</plist>
|