source: git/lib/Info.plist.in @ e499239

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

buildmacosx.sh,lib/INSTALL.OSX,lib/Info.plist.in,lib/icons/Makefile.am:
Add icon and file associations for .svx files, and add missing <dict>
and </dict> tags so the .3d association works better.

  • Property mode set to 100644
File size: 1.6 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.svx</string>
48                        <key>CFBundleTypeExtensions</key>
49                        <array><string>svx</string></array>
50                        <key>CFBundleTypeIconFile</key>
51                        <string>svx</string>
52                        <key>CFBundleTypeRole</key>
53                        <string>Viewer</string>
54                        <key>LSHandlerRank</key>
55                        <string>Owner</string>
56                </dict>
57        </array>
58</dict>
59</plist>
Note: See TracBrowser for help on using the repository browser.