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
This commit is contained in:
Guy Scharf 2020-07-04 20:18:15 -07:00
parent 44b7261edd
commit 155bd0b530

View File

@ -191,7 +191,7 @@ void CheckUpdates::showMessage()
return; return;
if (showIfCurrent) { if (showIfCurrent) {
// checkingBox->cancel(); if (checkingBox != nullptr)
checkingBox->reset(); checkingBox->reset();
} }
@ -207,15 +207,18 @@ void CheckUpdates::showMessage()
void CheckUpdates::checkForUpdates(bool showWhenCurrent) void CheckUpdates::checkForUpdates(bool showWhenCurrent)
{ {
showIfCurrent = showWhenCurrent; showIfCurrent = showWhenCurrent;
/****
// If running a test version of OSCAR, try reading versions.xml from OSCAR_Data directory
if (!getVersion().IsReleaseVersion()) {
versionXML = readLocalVersions(); versionXML = readLocalVersions();
if (versionXML.length() <= 0) { if (versionXML.length() > 0) {
qDebug() << "Error reading local version control file - version check disabled"; compareVersions();
QMessageBox::warning(nullptr, STR_MessageBox_Warning, QObject::tr("Unable to read version control file from disk")); elapsedTime = 0;
checkingBox = nullptr;
showMessage();
return; return;
} }
compareVersions(); }
****/
readTimer.start(); readTimer.start();