From 437ecb989e4dbcca98a3330fddca1522dc6c50e6 Mon Sep 17 00:00:00 2001 From: manongjohn <19245851+manongjohn@users.noreply.github.com> Date: Sun, 8 May 2022 16:06:24 -0400 Subject: [PATCH] Fix software version check --- toonz/sources/toonz/mainwindow.cpp | 2 +- toonz/sources/toonz/preferencespopup.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/toonz/sources/toonz/mainwindow.cpp b/toonz/sources/toonz/mainwindow.cpp index e781c75c..2078f0df 100644 --- a/toonz/sources/toonz/mainwindow.cpp +++ b/toonz/sources/toonz/mainwindow.cpp @@ -1314,7 +1314,7 @@ extern const char *applicationVersion; void MainWindow::checkForUpdates() { // Since there is only a single version of Tahoma, we can do a simple check // against a string - QString updateUrl("https://tahoma2d.org/files/tahoma-version.txt"); + QString updateUrl("http://tahoma2d.org/files/tahoma-version.txt"); m_updateChecker = new UpdateChecker(updateUrl); connect(m_updateChecker, SIGNAL(done(bool)), this, diff --git a/toonz/sources/toonz/preferencespopup.cpp b/toonz/sources/toonz/preferencespopup.cpp index 13fc575c..113af66d 100644 --- a/toonz/sources/toonz/preferencespopup.cpp +++ b/toonz/sources/toonz/preferencespopup.cpp @@ -2169,7 +2169,7 @@ QWidget* PreferencesPopup::createVersionControlPage() { insertUI(SVNEnabled, lay); insertUI(automaticSVNFolderRefreshEnabled, lay); -// insertUI(latestVersionCheckEnabled, lay); + insertUI(latestVersionCheckEnabled, lay); lay->setRowStretch(lay->rowCount(), 1); insertFootNote(lay);