mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Add error handling in case a developer accidentally defines an invalid version.
This commit is contained in:
parent
c71a953afd
commit
80489a4b29
@ -542,11 +542,17 @@ int main(int argc, char *argv[]) {
|
||||
#endif
|
||||
|
||||
Version settingsVersion = Version(AppSetting->versionString());
|
||||
if (getVersion() > settingsVersion) {
|
||||
Version currentVersion = getVersion();
|
||||
if (currentVersion.IsValid() == false) {
|
||||
// The defined version MUST be valid, otherwise comparisons between versions will fail.
|
||||
QMessageBox::critical(nullptr, STR_MessageBox_Error, QObject::tr("Version \"%1\" is invalid, cannot continue!").arg(currentVersion));
|
||||
return 0;
|
||||
}
|
||||
if (currentVersion > settingsVersion) {
|
||||
AppSetting->setShowAboutDialog(1);
|
||||
// release_notes();
|
||||
// check_updates = false;
|
||||
} else if (getVersion() < settingsVersion) {
|
||||
} else if (currentVersion < settingsVersion) {
|
||||
if (QMessageBox::warning(nullptr, STR_MessageBox_Error,
|
||||
QObject::tr("The version of OSCAR you just ran is OLDER than the one used to create this data (%1).").
|
||||
arg(AppSetting->versionString()) +"\n\n"+
|
||||
|
@ -148,6 +148,10 @@ void Version::ParseSemanticVersion()
|
||||
mIsValid = true;
|
||||
break;
|
||||
}
|
||||
|
||||
// If we ever encounter any really old version whose version isn't valid, its
|
||||
// major version will be 0, so it will correctly be considered older than
|
||||
// valid versions.
|
||||
}
|
||||
|
||||
// Deal with non-Semantic-Versioning numbers used before 1.1.0-beta-2 to make sure they
|
||||
|
Loading…
Reference in New Issue
Block a user