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>
|
|
|
|
<string>10.10.0</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>
|
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/>
|
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-07-27 20:26:04 +00:00
|
|
|
<key>LSRequiresNativeExecution</key>
|
|
|
|
<true/>
|
2019-01-07 21:47:13 +00:00
|
|
|
</dict>
|
2019-08-03 00:04:41 +00:00
|
|
|
</plist>
|