diff options
author | Abhi Beckert <me@abhibeckert.com> | 2016-04-17 09:06:44 +1000 |
---|---|---|
committer | Abhi Beckert <me@abhibeckert.com> | 2016-04-17 09:06:44 +1000 |
commit | 7804fba664590817b2f7e987a44e508d5d7c0e3f (patch) | |
tree | fd5a9eeaea47ba175031b97f8723e0d6a56bfa2e /Resources/Plists/Info.plist | |
parent | d8ee2f96227b1e35163fa19a62cbd17279aadc17 (diff) | |
download | sequelpro-7804fba664590817b2f7e987a44e508d5d7c0e3f.tar.gz sequelpro-7804fba664590817b2f7e987a44e508d5d7c0e3f.tar.bz2 sequelpro-7804fba664590817b2f7e987a44e508d5d7c0e3f.zip |
Allow TLS 1.0 connections to sequelpro.com
this will allow sparkle connections against the 10.11 SDK
Diffstat (limited to 'Resources/Plists/Info.plist')
-rw-r--r-- | Resources/Plists/Info.plist | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/Resources/Plists/Info.plist b/Resources/Plists/Info.plist index 6ec8ccfe..5f5b8279 100644 --- a/Resources/Plists/Info.plist +++ b/Resources/Plists/Info.plist @@ -199,6 +199,31 @@ <key>x86_64</key> <string>10.6.0</string> </dict> + + <key>NSAppTransportSecurity</key> + <dict> + <key>NSExceptionDomains</key> + <dict> + <key>sequelpro.com</key> + <dict> + <key>NSExceptionAllowsInsecureHTTPLoads</key> + <false/> + <key>NSExceptionRequiresForwardSecrecy</key> + <false/> + <key>NSExceptionMinimumTLSVersion</key> + <string>TLSv1.0</string> + <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key> + <false/> + <key>NSThirdPartyExceptionRequiresForwardSecrecy</key> + <false/> + <key>NSThirdPartyExceptionMinimumTLSVersion</key> + <string>TLSv1.0</string> + <key>NSRequiresCertificateTransparency</key> + <false/> + </dict> + </dict> + </dict> + <key>NSAppleScriptEnabled</key> <true/> <key>NSHumanReadableCopyright</key> @@ -240,7 +265,7 @@ <key>SUEnableSystemProfiling</key> <true/> <key>SUFeedURL</key> - <string>https://www.sequelpro.com/appcast/app-releases.xml</string> + <string>https://sequelpro.com/appcast/app-releases.xml</string> <key>SUPublicDSAKeyFile</key> <string>sparkle-public-key.pem</string> <key>UTExportedTypeDeclarations</key> |