diff --git a/dist/Info.plist.in b/dist/Info.plist.in index 042b49b79..32dc67afe 100644 --- a/dist/Info.plist.in +++ b/dist/Info.plist.in @@ -31,7 +31,7 @@ LSApplicationCategoryType public.app-category.music SUFeedURL - http://data.clementine-player.org/sparkle + https://clementine-data.appspot.com/sparkle SUPublicDSAKeyFile sparkle_pub.pem BreakpadProduct diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index 309268860..ebb6fd77d 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -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()));