mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
d58a1aeaf3
Summary: Fix specs Fix responding to mailto, files at launch It's super important that `window:loaded` is /not/ sent from index.js because `loadSettings.bootstrapScript` is async and nothing is actually loaded yet. This was causing the app to dispatch the mailto:// links into the main window before a DraftStore existed. I think this was necessary at one point because we had NylasWindows not using a bootstrapScript? Should not be here anymore... Test Plan: Run a few new tests Reviewers: juan, evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D2737
78 lines
2 KiB
Text
78 lines
2 KiB
Text
<?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>CFBundleExecutable</key>
|
|
<string>Nylas</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>nylas.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.nylas.nylas-mail</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>Nylas N1</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Nylas N1</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>0</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>0</string>
|
|
<key>LSApplicationCategoryType</key>
|
|
<string>public.app-category.business</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.8</string>
|
|
<key>NSAppleScriptEnabled</key>
|
|
<string>YES</string>
|
|
<key>NSMainNibFile</key>
|
|
<string>MainMenu</string>
|
|
<key>NSPrincipalClass</key>
|
|
<string>AtomApplication</string>
|
|
<key>NSSupportsAutomaticGraphicsSwitching</key>
|
|
<true/>
|
|
<key>SUPublicDSAKeyFile</key>
|
|
<string>speakeasy.pem</string>
|
|
<key>SUScheduledCheckInterval</key>
|
|
<string>3600</string>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>edgehill</string>
|
|
</array>
|
|
<key>CFBundleURLName</key>
|
|
<string>Nylas Shared Session Protocol</string>
|
|
</dict>
|
|
<dict>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>mailto</string>
|
|
</array>
|
|
<key>CFBundleURLName</key>
|
|
<string>Mailto Protocol</string>
|
|
</dict>
|
|
</array>
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>LSHandlerRank</key>
|
|
<string>Alternate</string>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
<key>CFBundleTypeName</key>
|
|
<string>File</string>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>*</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|