2013-04-12 01:46:58 +00: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 21:47:13 +00:00
|
|
|
<dict>
|
|
|
|
<key>CFBundleDisplayName</key>
|
|
|
|
<string>${PRODUCT_NAME}</string>
|
|
|
|
<key>CFBundleExecutable</key>
|
|
|
|
<string>${PRODUCT_NAME}</string>
|
|
|
|
<key>CFBundleIdentifier</key>
|
2019-06-17 22:56:15 +00:00
|
|
|
<string>${ELECTRON_BUNDLE_ID}</string>
|
2019-01-07 21:47:13 +00: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 22:56:15 +00:00
|
|
|
<string>${ELECTRON_VERSION}</string>
|
2019-01-07 21:47:13 +00:00
|
|
|
<key>CFBundleShortVersionString</key>
|
2019-06-17 22:56:15 +00:00
|
|
|
<string>${ELECTRON_VERSION}</string>
|
2019-01-07 21:47:13 +00:00
|
|
|
<key>LSApplicationCategoryType</key>
|
|
|
|
<string>public.app-category.developer-tools</string>
|
|
|
|
<key>LSMinimumSystemVersion</key>
|
2021-04-05 19:18:12 +00:00
|
|
|
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
2019-10-21 21:11:09 +00:00
|
|
|
<key>NSMainNibFile</key>
|
|
|
|
<string>MainMenu</string>
|
2019-01-07 21:47:13 +00:00
|
|
|
<key>NSPrincipalClass</key>
|
2020-02-21 19:05:03 +00:00
|
|
|
<string>AtomApplication</string>
|
2020-12-14 18:57:36 +00:00
|
|
|
<key>NSAppTransportSecurity</key>
|
|
|
|
<dict>
|
|
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
|
|
<true/>
|
|
|
|
</dict>
|
2019-01-07 21:47:13 +00:00
|
|
|
<key>NSSupportsAutomaticGraphicsSwitching</key>
|
|
|
|
<true/>
|
|
|
|
<key>NSHighResolutionCapable</key>
|
|
|
|
<true/>
|
2019-07-15 08:23:12 +00:00
|
|
|
<key>NSRequiresAquaSystemAppearance</key>
|
|
|
|
<false/>
|
2019-08-03 00:04:41 +00:00
|
|
|
<key>NSQuitAlwaysKeepsWindows</key>
|
|
|
|
<false/>
|
2022-04-28 14:28:27 +00:00
|
|
|
<key>LSEnvironment</key>
|
|
|
|
<dict>
|
|
|
|
<key>MallocNanoZone</key>
|
|
|
|
<string>0</string>
|
|
|
|
</dict>
|
2019-08-21 20:14:25 +00: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 19:34:39 +00: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 21:49:01 +00: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 21:47:13 +00:00
|
|
|
</dict>
|
2019-08-03 00:04:41 +00:00
|
|
|
</plist>
|