1
0
mirror of https://github.com/minecraft-linux/macos-builder.git synced 2025-05-20 23:18:02 +00:00
Files
2023-09-08 21:24:18 +02:00

51 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSHighResolutionCapable</key>
<true/>
<key>CFBundleIdentifier</key>
<string>{{ cf_bundle_identifier }}</string>
<key>CFBundleExecutable</key>
<string>{{ cf_bundle_executable }}</string>
<key>CFBundleGetInfoString</key>
<string>{{ cf_bundle_get_info_string }}</string>
<key>CFBundleIconFile</key>
<string>{{ cf_bundle_icon_file }}</string>
<key>CFBundleName</key>
<string>{{ cf_bundle_name }}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleVersion</key>
<string>{{ cf_bundle_version }}</string>
<key>SUFeedURL</key>
<string>{{ cf_sparkle_feed }}</string>
<key>SUEnableAutomaticChecks</key>
<false/>
<key>SUPublicEDKey</key>
<string>{{ cf_sparkle_public_ed_key }}</string>
<key>SUScheduledCheckInterval</key>
<integer>0</integer>
<key>SUAllowsAutomaticUpdates</key>
<false/>
<key>SUAutomaticallyUpdate</key>
<false/>
<key>LSMinimumSystemVersion</key>
<string>{{ cf_bundle_macos_min }}</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>mcpack</string>
<string>mcworld</string>
<string>mcaddon</string>
<string>mctemplate</string>
</array>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
</dict>
</array>
</dict>
</plist>