source: josm/trunk/macosx/JOSM.app/Contents/Info.plist_template.xml@ 11298

Last change on this file since 11298 was 11258, checked in by Don-vip, 7 years ago

fix #13980 - Tell Mac OS X we don't always need a dedicated graphics card - needs 8u92 or later, see https://bugs.openjdk.java.net/browse/JDK-8041900

File size: 5.0 KB
Line 
1<key>NSSupportsAutomaticGraphicsSwitching</key>
2<true/>
3<key>CFBundleAllowMixedLocalizations</key>
4<string>true</string>
5<key>UTExportedTypeDeclarations</key>
6<array>
7 <!-- Export JOSM file format UTI (*.osm) -->
8 <dict>
9 <key>UTTypeIdentifier</key>
10 <string>org.openstreetmap.josm.osm</string>
11 <key>UTTypeDescription</key>
12 <string>JOSM File</string>
13 <key>UTTypeIconFile</key>
14 <string>JOSM.icns</string>
15 <key>UTTypeReferenceURL</key>
16 <string>http://wiki.openstreetmap.org/wiki/JOSM_file_format</string>
17 <key>UTTypeConformsTo</key>
18 <array>
19 <string>public.xml</string>
20 </array>
21 <key>UTTypeTagSpecification</key>
22 <dict>
23 <key>com.apple.ostype</key>
24 <string>JOSM</string>
25 <key>public.filename-extension</key>
26 <array>
27 <string>osm</string>
28 </array>
29 <key>public.mime-type</key>
30 <string>application/x-osm+xml</string>
31 </dict>
32 </dict>
33</array>
34<key>UTImportedTypeDeclarations</key>
35<array>
36 <!-- Import GPX file format "standard" UTI (*.gpx) -->
37 <dict>
38 <key>UTTypeIdentifier</key>
39 <string>com.topografix.gpx</string>
40 <key>UTTypeReferenceURL</key>
41 <string>http://www.topografix.com/GPX/1/1/</string>
42 <key>UTTypeDescription</key>
43 <string>GPS Exchange Format (GPX)</string>
44 <key>UTTypeConformsTo</key>
45 <array>
46 <string>public.xml</string>
47 </array>
48 <key>UTTypeTagSpecification</key>
49 <dict>
50 <key>public.filename-extension</key>
51 <array>
52 <string>gpx</string>
53 </array>
54 <key>public.mime-type</key>
55 <string>application/gpx+xml</string>
56 </dict>
57 </dict>
58 <!-- Import GPX file format Apple UTI (*.gpx) -->
59 <dict>
60 <key>UTTypeIdentifier</key>
61 <string>com.apple.dt.document.gpx</string>
62 <key>UTTypeReferenceURL</key>
63 <string>http://www.topografix.com/GPX/1/1/</string>
64 <key>UTTypeDescription</key>
65 <string>GPX File</string>
66 <key>UTTypeConformsTo</key>
67 <array>
68 <string>public.xml</string>
69 </array>
70 <key>UTTypeTagSpecification</key>
71 <dict>
72 <key>public.filename-extension</key>
73 <array>
74 <string>gpx</string>
75 </array>
76 <key>public.mime-type</key>
77 <string>application/gpx+xml</string>
78 </dict>
79 </dict>
80</array>
81<key>CFBundleDocumentTypes</key>
82<array>
83 <!-- Registers opening *.osm files -->
84 <dict>
85 <key>CFBundleTypeIconFile</key>
86 <string>JOSM.icns</string>
87 <key>CFBundleTypeName</key>
88 <string>OSM Files</string>
89 <key>CFBundleTypeRole</key>
90 <string>Editor</string>
91 <key>LSHandlerRank</key>
92 <string>Owner</string>
93 <key>LSItemContentTypes</key>
94 <array>
95 <string>org.openstreetmap.josm.osm</string>
96 </array>
97 <key>NSExportableTypes</key>
98 <array>
99 <string>org.openstreetmap.josm.osm</string>
100 <string>com.topografix.gpx</string>
101 <string>com.pkware.zip-archive</string>
102 <string>org.gnu.gnu-zip-archive</string>
103 <string>public.archive.bzip2</string>
104 </array>
105 </dict>
106 <!-- Registers opening *.gpx files -->
107 <dict>
108 <key>CFBundleTypeIconFile</key>
109 <string>JOSM.icns</string>
110 <key>CFBundleTypeName</key>
111 <string>GPX Files</string>
112 <key>CFBundleTypeRole</key>
113 <string>Editor</string>
114 <key>LSHandlerRank</key>
115 <string>Alternate</string>
116 <key>LSItemContentTypes</key>
117 <array>
118 <string>com.topografix.gpx</string>
119 <string>com.apple.dt.document.gpx</string>
120 </array>
121 <key>NSExportableTypes</key>
122 <array>
123 <string>org.openstreetmap.josm.osm</string>
124 </array>
125 </dict>
126 <!-- Registers opening *.osm.zip, *.osm.gz, *.osm.bz2 files -->
127 <dict>
128 <key>CFBundleTypeIconFile</key>
129 <string>JOSM.icns</string>
130 <key>CFBundleTypeName</key>
131 <string>OSM Compressed Files</string>
132 <key>CFBundleTypeRole</key>
133 <string>Editor</string>
134 <key>LSHandlerRank</key>
135 <string>Alternate</string>
136 <key>LSItemContentTypes</key>
137 <array>
138 <string>com.pkware.zip-archive</string>
139 <string>org.gnu.gnu-zip-archive</string>
140 <string>public.archive.bzip2</string>
141 </array>
142 <key>NSExportableTypes</key>
143 <array>
144 <string>org.openstreetmap.josm.osm</string>
145 <string>com.pkware.zip-archive</string>
146 <string>org.gnu.gnu-zip-archive</string>
147 <string>public.archive.bzip2</string>
148 </array>
149 </dict>
150</array>
Note: See TracBrowser for help on using the repository browser.