mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
44b7261edd
commit
155bd0b530
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user