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