source: git/lib/Info.plist.in

walls-data
Last change on this file was efc62cd, checked in by Olly Betts <olly@…>, 2 years ago

Set NSPrincipalClass to wxNSApplication

https://docs.wxwidgets.org/3.1.5/overview_high_dpi.html says we must do
this for hidpi to work properly, though doesn't really seem to say why.

  • Property mode set to 100644
File size: 2.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>NSPrincipalClass</key>
32        <string>wxNSApplication</string>
33        <key>CFBundleDocumentTypes</key>
34        <array>
35                <dict>
36                        <key>CFBundleTypeName</key>
37                        <string>com.survex.3d</string>
38                        <key>CFBundleTypeExtensions</key>
39                        <array><string>3d</string></array>
40                        <key>CFBundleTypeIconFile</key>
41                        <string>3d</string>
42                        <key>CFBundleTypeRole</key>
43                        <string>Viewer</string>
44                        <key>LSHandlerRank</key>
45                        <string>Owner</string>
46                </dict>
47                <dict>
48                        <key>CFBundleTypeName</key>
49                        <string>com.survex.err</string>
50                        <key>CFBundleTypeExtensions</key>
51                        <array><string>err</string></array>
52                        <key>CFBundleTypeIconFile</key>
53                        <string>err</string>
54                        <key>CFBundleTypeRole</key>
55                        <string>None</string>
56                </dict>
57                <dict>
58                        <key>CFBundleTypeName</key>
59                        <string>com.survex.plt</string>
60                        <key>CFBundleTypeExtensions</key>
61                        <array><string>plt</string></array>
62                        <key>CFBundleTypeIconFile</key>
63                        <string>plt</string>
64                        <key>CFBundleTypeRole</key>
65                        <string>Viewer</string>
66                        <key>LSHandlerRank</key>
67                        <string>Owner</string>
68                </dict>
69                <dict>
70                        <key>CFBundleTypeName</key>
71                        <string>com.survex.pos</string>
72                        <key>CFBundleTypeExtensions</key>
73                        <array><string>pos</string></array>
74                        <key>CFBundleTypeIconFile</key>
75                        <string>pos</string>
76                        <key>CFBundleTypeRole</key>
77                        <string>Viewer</string>
78                        <key>LSHandlerRank</key>
79                        <string>Owner</string>
80                </dict>
81                <dict>
82                        <key>CFBundleTypeName</key>
83                        <string>com.survex.svx</string>
84                        <key>CFBundleTypeExtensions</key>
85                        <array><string>svx</string></array>
86                        <key>CFBundleTypeIconFile</key>
87                        <string>svx</string>
88                        <key>CFBundleTypeRole</key>
89                        <string>Viewer</string>
90                        <key>LSHandlerRank</key>
91                        <string>Owner</string>
92                </dict>
93        </array>
94</dict>
95</plist>
Note: See TracBrowser for help on using the repository browser.