annotate mac/Info.template @ 2993:392f0b3dd502

Android: Add DW_FEATURE_RENDER_SAFE, initially just for Android. This will eventually be supported on other platforms that support unsafe rendering. On Android this moves EXPOSE events off the main thread and is enabled by default to provide extra safety. Since none of the callbacks happen on the main thread anymore, this means that none of the threading functions follow the potentially unsafe code paths that lead to instability. The trade off is performance, rendering performance, which was already kind of slow is even worse. I'll look for ways to improve this performance without sacrificing stability.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 02 May 2023 11:37:48 +0000
parents 3dde7456c9f6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2944
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3 <plist version="1.0">
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
4 <dict>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
5 <key>CFBundleDevelopmentRegion</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
6 <string>en</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
7 <key>CFBundleExecutable</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
8 <string>APPNAME</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
9 <key>CFBundleIconFile</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
10 <string></string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
11 <key>CFBundleIdentifier</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
12 <string>org.dbsoft.APPNAME</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
13 <key>CFBundleInfoDictionaryVersion</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
14 <string>6.0</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
15 <key>CFBundleName</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
16 <string>dwtest</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
17 <key>CFBundlePackageType</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
18 <string>APPL</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
19 <key>CFBundleShortVersionString</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
20 <string>1.1</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
21 <key>CFBundleSignature</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
22 <string>????</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
23 <key>CFBundleVersion</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
24 <string>1</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
25 <key>LSApplicationCategoryType</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
26 <string>public.app-category.developer-tools</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
27 <key>LSMinimumSystemVersion</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
28 <string>${MACOSX_DEPLOYMENT_TARGET}</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
29 <key>NSPrincipalClass</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
30 <string>NSApplication</string>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
31 <key>NSAppTransportSecurity</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
32 <dict>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
33 <key>NSAllowsArbitraryLoadsInWebContent</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
34 <true/>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
35 <key>NSAllowsArbitraryLoads</key>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
36 <true/>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
37 </dict>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
38 </dict>
3dde7456c9f6 Mac: Create a Info.plist template to be used by the finishup script.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
39 </plist>