mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-13 10:04:04 +01:00
c8969630f3
Introduced a real Property List Editor. Fixed Theme manager engine. Other minor fixes
115 lines
3.2 KiB
Plaintext
115 lines
3.2 KiB
Plaintext
<?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>CFBundleDevelopmentRegion</key>
|
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>plist</string>
|
|
</array>
|
|
<key>CFBundleTypeIconFile</key>
|
|
<string>GenericDocumentIcon.icns</string>
|
|
<key>CFBundleTypeName</key>
|
|
<string>XML PropertyList v1</string>
|
|
<key>CFBundleTypeOSTypes</key>
|
|
<array>
|
|
<string>com.apple.property-list</string>
|
|
</array>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>NSDocumentClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).Document</string>
|
|
</dict>
|
|
<dict>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>plist</string>
|
|
</array>
|
|
<key>CFBundleTypeIconFile</key>
|
|
<string>GenericDocumentIcon.icns</string>
|
|
<key>CFBundleTypeName</key>
|
|
<string>Binary PropertyList v1</string>
|
|
<key>CFBundleTypeOSTypes</key>
|
|
<array>
|
|
<string>com.apple.property-list</string>
|
|
</array>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>NSDocumentClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).Document</string>
|
|
</dict>
|
|
<dict>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>xml</string>
|
|
</array>
|
|
<key>CFBundleTypeIconFile</key>
|
|
<string>GenericDocumentIcon.icns</string>
|
|
<key>CFBundleTypeName</key>
|
|
<string>XML</string>
|
|
<key>CFBundleTypeOSTypes</key>
|
|
<array>
|
|
<string>public.xml</string>
|
|
</array>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>NSDocumentClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).Document</string>
|
|
</dict>
|
|
</array>
|
|
<key>CFBundleExecutable</key>
|
|
<string>$(EXECUTABLE_NAME)</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>AppIcon</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>$(PRODUCT_NAME)</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>$(MARKETING_VERSION)</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>$(CURRENT_PROJECT_VERSION)</string>
|
|
<key>LSApplicationCategoryType</key>
|
|
<string>public.app-category.utilities</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
|
|
<key>LSUIElement</key>
|
|
<true/>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
<key>NSExceptionDomains</key>
|
|
<dict>
|
|
<key>github.com</key>
|
|
<dict>
|
|
<key>NSIncludesSubdomains</key>
|
|
<true/>
|
|
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
|
|
<true/>
|
|
<key>NSTemporaryExceptionMinimumTLSVersion</key>
|
|
<string>TLSv1.1</string>
|
|
</dict>
|
|
</dict>
|
|
</dict>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Copyright © 2019 CloverHackyColor. All rights reserved.</string>
|
|
<key>NSMainNibFile</key>
|
|
<string>MainMenu</string>
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
<key>NSSupportsAutomaticTermination</key>
|
|
<false/>
|
|
<key>NSSupportsSuddenTermination</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|