Merge pull request #656 from manongjohn/fix_software_update_check

Fix checking for version update
This commit is contained in:
manongjohn 2021-04-11 11:27:43 -04:00 committed by GitHub
commit 77beaca4ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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