Merge pull request #993 from manongjohn/fix_version_check

Fix software version check
This commit is contained in:
manongjohn 2022-06-07 06:29:13 -04:00 committed by GitHub
commit 9e9129402d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);