aboutsummaryrefslogtreecommitdiff
path: root/macos-Info.plist.in
blob: b518a6235005ca07e8627cac8ac676d5de25fe6e (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>CFBundleExecutable</key>
		<string>@ProjectName@</string>
		<key>CFBundleIdentifier</key>
		<string>@ProjectNS@@ProjectName@</string>
		<key>CFBundleName</key>
		<string>@ProjectName@</string>
		<key>CFBundleIconFile</key>
		<string>@ProjectName@.icns</string>
		<key>CFBundleShortVersionString</key>
		<string>@ProjectVersion@</string>
		<key>CFBundleInfoDictionaryVersion</key>
		<string>6.0</string>
		<key>CFBundlePackageType</key>
		<string>APPL</string>

		<!-- Although mostly static, this should eventually be generated. -->
		<!-- In particular, we should expand image/x-dcraw, -->
		<!-- using information we can collect from shared-mime-info. -->
		<key>CFBundleDocumentTypes</key>
		<array>
			<dict>
				<key>CFBundleTypeName</key>
				<string>Image File</string>
				<key>CFBundleTypeRole</key>
				<string>Viewer</string>
				<key>LSHandlerRank</key>
				<string>Default</string>
				<key>LSItemContentTypes</key>
				<array>
					<string>com.apple.icns</string>
					<string>com.apple.quicktime-image</string>
					<string>com.compuserve.gif</string>
					<string>com.microsoft.bmp</string>
					<string>com.microsoft.ico</string>
					<string>org.webmproject.webp</string>
					<string>public.avif</string>
					<string>public.heic</string>
					<string>public.heif</string>
					<string>public.jpeg</string>
					<string>public.png</string>
					<string>public.svg-image</string>
					<string>public.tiff</string>
					<string>public.xbitmap-image</string>
				</array>
			</dict>
		</array>
	</dict>
</plist>