From 155bd0b530261ce9228bd35ec2583b1b8ad07d66 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Sat, 4 Jul 2020 20:18:15 -0700 Subject: [PATCH] Auto Check Updates for testing versions.xml settings If you are running a test version of OSCAR, it will first try to read versions.xml from your OSCAR_Data directory. If that fails, it will go to www.sleepfiles.com/OSCAR/versions/versions.xml The purpose of this approach is to allow you to test different settings in versions.xml This debug feature will probably be removed, or changed, when a release version is built --- oscar/checkupdates.cpp | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/oscar/checkupdates.cpp b/oscar/checkupdates.cpp index cd488442..18324879 100644 --- a/oscar/checkupdates.cpp +++ b/oscar/checkupdates.cpp @@ -191,8 +191,8 @@ void CheckUpdates::showMessage() return; if (showIfCurrent) { -// checkingBox->cancel(); - checkingBox->reset(); + if (checkingBox != nullptr) + checkingBox->reset(); } QMessageBox msgBox; @@ -207,15 +207,18 @@ void CheckUpdates::showMessage() void CheckUpdates::checkForUpdates(bool showWhenCurrent) { showIfCurrent = showWhenCurrent; -/**** - versionXML = readLocalVersions(); - if (versionXML.length() <= 0) { - qDebug() << "Error reading local version control file - version check disabled"; - QMessageBox::warning(nullptr, STR_MessageBox_Warning, QObject::tr("Unable to read version control file from disk")); - return; + + // If running a test version of OSCAR, try reading versions.xml from OSCAR_Data directory + if (!getVersion().IsReleaseVersion()) { + versionXML = readLocalVersions(); + if (versionXML.length() > 0) { + compareVersions(); + elapsedTime = 0; + checkingBox = nullptr; + showMessage(); + return; + } } - compareVersions(); -****/ readTimer.start();