Use https to fetch appcast

This commit is contained in:
1024jp 2015-09-30 17:44:37 +01:00
parent 2a50d07bfb
commit c6c2693db5
2 changed files with 11 additions and 2 deletions

View File

@ -5,6 +5,15 @@ Change Log
develop
--------------------------
### Fixes
- [non-AppStore ver.] Fix an issue where update check failed on El Capitan.
2.2.0-rc.2 (74)
--------------------------
### New Features
- Add new themes “Anura” and “Note”.

View File

@ -31,8 +31,8 @@
// constants
static NSString *_Nonnull const AppCastURL = @"http://coteditor.com/appcast.xml";
static NSString *_Nonnull const AppCastBetaURL = @"http://coteditor.com/appcast-beta.xml";
static NSString *_Nonnull const AppCastURL = @"https://coteditor.com/appcast.xml";
static NSString *_Nonnull const AppCastBetaURL = @"https://coteditor.com/appcast-beta.xml";
@interface CEUpdaterManager () <SUUpdaterDelegate>