Use SSL for sparkle update checks.

This commit is contained in:
John Maguire 2011-11-25 16:49:28 +01:00
parent 5ee9961d4f
commit 80e1e19f24
2 changed files with 2 additions and 2 deletions

2
dist/Info.plist.in vendored
View File

@ -31,7 +31,7 @@
<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>
<key>SUFeedURL</key>
<string>http://data.clementine-player.org/sparkle</string>
<string>https://clementine-data.appspot.com/sparkle</string>
<key>SUPublicDSAKeyFile</key>
<string>sparkle_pub.pem</string>
<key>BreakpadProduct</key>

View File

@ -611,7 +611,7 @@ MainWindow::MainWindow(
#ifdef Q_OS_WIN32
qLog(Debug) << "Creating sparkle updater";
qtsparkle::Updater* updater = new qtsparkle::Updater(
QUrl("http://data.clementine-player.org/sparkle-windows"), this);
QUrl("https://clementine-data.appspot.com/sparkle-windows"), this);
updater->SetNetworkAccessManager(new NetworkAccessManager(this));
updater->SetVersion(CLEMENTINE_VERSION);
connect(check_updates, SIGNAL(triggered()), updater, SLOT(CheckNow()));