2013-04-12 09:46:58 +08:00
|
|
|
<?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">
|
2019-01-07 13:47:13 -08:00
|
|
|
<dict>
|
|
|
|
<key>CFBundleDisplayName</key>
|
|
|
|
<string>${PRODUCT_NAME}</string>
|
|
|
|
<key>CFBundleExecutable</key>
|
|
|
|
<string>${PRODUCT_NAME}</string>
|
|
|
|
<key>CFBundleIdentifier</key>
|
2019-06-17 15:56:15 -07:00
|
|
|
<string>${ELECTRON_BUNDLE_ID}</string>
|
2019-01-07 13:47:13 -08:00
|
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
|
|
<string>6.0</string>
|
|
|
|
<key>CFBundleName</key>
|
|
|
|
<string>${PRODUCT_NAME}</string>
|
|
|
|
<key>CFBundlePackageType</key>
|
|
|
|
<string>APPL</string>
|
|
|
|
<key>CFBundleIconFile</key>
|
|
|
|
<string>electron.icns</string>
|
|
|
|
<key>CFBundleVersion</key>
|
2019-06-17 15:56:15 -07:00
|
|
|
<string>${ELECTRON_VERSION}</string>
|
2019-01-07 13:47:13 -08:00
|
|
|
<key>CFBundleShortVersionString</key>
|
2019-06-17 15:56:15 -07:00
|
|
|
<string>${ELECTRON_VERSION}</string>
|
2019-01-07 13:47:13 -08:00
|
|
|
<key>LSApplicationCategoryType</key>
|
|
|
|
<string>public.app-category.developer-tools</string>
|
|
|
|
<key>LSMinimumSystemVersion</key>
|
2021-04-05 12:18:12 -07:00
|
|
|
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
2019-10-21 14:11:09 -07:00
|
|
|
<key>NSMainNibFile</key>
|
|
|
|
<string>MainMenu</string>
|
2019-01-07 13:47:13 -08:00
|
|
|
<key>NSPrincipalClass</key>
|
2020-02-21 11:05:03 -08:00
|
|
|
<string>AtomApplication</string>
|
2020-12-14 10:57:36 -08:00
|
|
|
<key>NSAppTransportSecurity</key>
|
|
|
|
<dict>
|
|
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
|
|
<true/>
|
|
|
|
</dict>
|
2019-01-07 13:47:13 -08:00
|
|
|
<key>NSSupportsAutomaticGraphicsSwitching</key>
|
|
|
|
<true/>
|
|
|
|
<key>NSHighResolutionCapable</key>
|
|
|
|
<true/>
|
2019-07-15 01:23:12 -07:00
|
|
|
<key>NSRequiresAquaSystemAppearance</key>
|
|
|
|
<false/>
|
2019-08-02 17:04:41 -07:00
|
|
|
<key>NSQuitAlwaysKeepsWindows</key>
|
|
|
|
<false/>
|
2019-08-21 13:14:25 -07:00
|
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
|
|
<string>This app needs access to the microphone</string>
|
|
|
|
<key>NSCameraUsageDescription</key>
|
|
|
|
<string>This app needs access to the camera</string>
|
2020-12-01 13:34:39 -06:00
|
|
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
|
|
|
<string>This app needs access to Bluetooth</string>
|
|
|
|
<key>NSBluetoothPeripheralUsageDescription</key>
|
|
|
|
<string>This app needs access to Bluetooth</string>
|
2021-09-09 14:49:01 -07:00
|
|
|
<key>ElectronAsarIntegrity</key>
|
|
|
|
<dict>
|
|
|
|
<key>Resources/default_app.asar</key>
|
|
|
|
<dict>
|
|
|
|
<key>algorithm</key>
|
|
|
|
<string>SHA256</string>
|
|
|
|
<key>hash</key>
|
|
|
|
<string>${DEFAULT_APP_ASAR_HEADER_SHA}</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
2019-01-07 13:47:13 -08:00
|
|
|
</dict>
|
2019-08-02 17:04:41 -07:00
|
|
|
</plist>
|