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