annotate mac/Info.plist @ 2873:0bbfb19022e7

C++: GCC prior to 4.7 does not support the override keyword. So if using earlier versions of GCC, just remove override. This allows compilation on ancient GCC and GCC based Xcode. Also remove virtual from the application, I don't think it is needed and old GCC pukes on it when it is there.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 19 Dec 2022 07:42:12 +0000
parents ef7a414f9b71
children 3dde7456c9f6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
664
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3 <plist version="1.0">
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
4 <dict>
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
5 <key>CFBundleDevelopmentRegion</key>
664
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
6 <string>en</string>
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
7 <key>CFBundleExecutable</key>
2861
ef7a414f9b71 Add initial C++ binding header and example program.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1998
diff changeset
8 <string>APPNAME</string>
664
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
9 <key>CFBundleIconFile</key>
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
10 <string></string>
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
11 <key>CFBundleIdentifier</key>
2861
ef7a414f9b71 Add initial C++ binding header and example program.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1998
diff changeset
12 <string>org.dbsoft.APPNAME</string>
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
13 <key>CFBundleInfoDictionaryVersion</key>
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
14 <string>6.0</string>
664
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
15 <key>CFBundleName</key>
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
16 <string>dwtest</string>
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
17 <key>CFBundlePackageType</key>
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
18 <string>APPL</string>
664
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
19 <key>CFBundleShortVersionString</key>
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
20 <string>1.1</string>
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
21 <key>CFBundleSignature</key>
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
22 <string>????</string>
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
23 <key>CFBundleVersion</key>
664
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
24 <string>1</string>
1934
487fd711bf3f Mac: Fix deprecation warning in the 10.13 SDK.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 664
diff changeset
25 <key>LSApplicationCategoryType</key>
487fd711bf3f Mac: Fix deprecation warning in the 10.13 SDK.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 664
diff changeset
26 <string>public.app-category.developer-tools</string>
664
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
27 <key>LSMinimumSystemVersion</key>
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
28 <string>${MACOSX_DEPLOYMENT_TARGET}</string>
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
29 <key>NSPrincipalClass</key>
ba3af8eb56f1 Fixed drawing of rects and points. Fonts now properly draw in color. Updated property list.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
30 <string>NSApplication</string>
1968
abb949dd3bb3 Mac: Add setting to Info.plist that allows insecure URLs in embedded HTML.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1934
diff changeset
31 <key>NSAppTransportSecurity</key>
abb949dd3bb3 Mac: Add setting to Info.plist that allows insecure URLs in embedded HTML.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1934
diff changeset
32 <dict>
1998
a3de27b07a8d Mac: Add an exception to Info.plist to allow insecure URL loads on 10.11.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1968
diff changeset
33 <key>NSAllowsArbitraryLoadsInWebContent</key>
a3de27b07a8d Mac: Add an exception to Info.plist to allow insecure URL loads on 10.11.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1968
diff changeset
34 <true/>
a3de27b07a8d Mac: Add an exception to Info.plist to allow insecure URL loads on 10.11.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1968
diff changeset
35 <key>NSAllowsArbitraryLoads</key>
a3de27b07a8d Mac: Add an exception to Info.plist to allow insecure URL loads on 10.11.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1968
diff changeset
36 <true/>
1968
abb949dd3bb3 Mac: Add setting to Info.plist that allows insecure URLs in embedded HTML.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1934
diff changeset
37 </dict>
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
38 </dict>
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
39 </plist>