source: git/lib/Info.plist.in @ 9e8ff8e

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 9e8ff8e was c223e7b, checked in by Olly Betts <olly@…>, 9 years ago

lib/Info.plist.in: Add missing CFBundleTypeRole to silence warning
on stderr.

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5        <key>CFBundleDisplayName</key>
6        <string>Aven</string>
7        <key>CFBundleExecutable</key>
8        <string>aven</string>
9        <key>CFBundleIconFile</key>
10        <string>Aven</string>
11        <key>CFBundleIdentifier</key>
12        <string>com.survex.app.Aven</string>
13        <key>CFBundleName</key>
14        <string>Aven</string>
15        <key>CFBundlePackageType</key>
16        <string>APPL</string>
17        <key>CFBundleShortVersionString</key>
18        <string>@VERSION@</string>
19        <key>CFBundleSignature</key>
20        <string>AVEN</string>
21        <key>CFBundleVersion</key>
22        <string>1.0</string>
23        <key>LSHasLocalizedDisplayName</key>
24        <string>0</string>
25        <key>NSAppleScriptEnabled</key>
26        <false/>
27        <key>NSHumanReadableCopyright</key>
28        <string>Licensed under the GNU General Public License version 2 or later.
29@COPYRIGHT_MSG@
30@AVEN_COPYRIGHT_MSG@</string>
31        <key>CFBundleDocumentTypes</key>
32        <array>
33                <dict>
34                        <key>CFBundleTypeName</key>
35                        <string>com.survex.3d</string>
36                        <key>CFBundleTypeExtensions</key>
37                        <array><string>3d</string></array>
38                        <key>CFBundleTypeIconFile</key>
39                        <string>3d</string>
40                        <key>CFBundleTypeRole</key>
41                        <string>Viewer</string>
42                        <key>LSHandlerRank</key>
43                        <string>Owner</string>
44                </dict>
45                <dict>
46                        <key>CFBundleTypeName</key>
47                        <string>com.survex.err</string>
48                        <key>CFBundleTypeExtensions</key>
49                        <array><string>err</string></array>
50                        <key>CFBundleTypeIconFile</key>
51                        <string>err</string>
52                        <key>CFBundleTypeRole</key>
53                        <string>None</string>
54                </dict>
55                <dict>
56                        <key>CFBundleTypeName</key>
57                        <string>com.survex.plt</string>
58                        <key>CFBundleTypeExtensions</key>
59                        <array><string>plt</string></array>
60                        <key>CFBundleTypeIconFile</key>
61                        <string>plt</string>
62                        <key>CFBundleTypeRole</key>
63                        <string>Viewer</string>
64                        <key>LSHandlerRank</key>
65                        <string>Owner</string>
66                </dict>
67                <dict>
68                        <key>CFBundleTypeName</key>
69                        <string>com.survex.pos</string>
70                        <key>CFBundleTypeExtensions</key>
71                        <array><string>pos</string></array>
72                        <key>CFBundleTypeIconFile</key>
73                        <string>pos</string>
74                        <key>CFBundleTypeRole</key>
75                        <string>Viewer</string>
76                        <key>LSHandlerRank</key>
77                        <string>Owner</string>
78                </dict>
79                <dict>
80                        <key>CFBundleTypeName</key>
81                        <string>com.survex.svx</string>
82                        <key>CFBundleTypeExtensions</key>
83                        <array><string>svx</string></array>
84                        <key>CFBundleTypeIconFile</key>
85                        <string>svx</string>
86                        <key>CFBundleTypeRole</key>
87                        <string>Viewer</string>
88                        <key>LSHandlerRank</key>
89                        <string>Owner</string>
90                </dict>
91        </array>
92</dict>
93</plist>
Note: See TracBrowser for help on using the repository browser.