Fix software version check

This commit is contained in:
manongjohn 2022-05-08 16:06:24 -04:00
parent f5c5f66a4f
commit 437ecb989e
2 changed files with 2 additions and 2 deletions

View file

@ -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,

View file

@ -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);