From f7f1ddfcbda67da6cad9f6c4266834b3e95a85a6 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Wed, 15 Jan 2020 19:27:03 -0500 Subject: [PATCH] Update version logic to drive entirely from defined string rather than individual components. --- oscar/version.cpp | 37 ++++++++++++++++++++----------------- oscar/version.h | 1 + 2 files changed, 21 insertions(+), 17 deletions(-) diff --git a/oscar/version.cpp b/oscar/version.cpp index 66ba3090..6e6456f6 100644 --- a/oscar/version.cpp +++ b/oscar/version.cpp @@ -9,19 +9,10 @@ #include "version.h" #include "git_info.h" #include "SleepLib/common.h" - #include -const int major_version = 1; // incompatible API changes -const int minor_version = 1; // new features that don't break things -const int revision_number = 0; // bugfixes, revisions -const QString ReleaseStatus = "beta"; // testing/nightly/unstable, beta/untamed, rc/almost, r/stable -#include "build_number.h" - #define VERSION "1.1.0-beta-1" - -const QString VersionString = QString("%1.%2.%3-%4-%5").arg(major_version).arg(minor_version).arg(revision_number).arg(ReleaseStatus).arg(build_number); -const QString ShortVersionString = QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number); +extern const QString VersionString = VERSION; #ifdef Q_OS_MAC const QString PlatformString = "MacOSX"; @@ -49,8 +40,7 @@ QString getBranchVersion() { QString version = STR_TR_AppVersion; - if (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) || - (ReleaseStatus.compare("release", Qt::CaseInsensitive)==0))) + if (getVersion().IsReleaseVersion() == false) version += " ("+GIT_REVISION + ")"; if (GIT_BRANCH != "master") { @@ -73,10 +63,11 @@ QString getPrereleaseSuffix() suffix += "-"+gitBranch(); } - // Append "-test" if not release - else if (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) || - (ReleaseStatus.compare("rc", Qt::CaseInsensitive)==0) )) { - suffix += "-test"; + // Append "-test" if not release or release candidate + else if (getVersion().IsReleaseVersion() == false) { + if (getVersion().PrereleaseType().compare("rc") != 0) { + suffix += "-test"; + } } return suffix; @@ -85,7 +76,7 @@ QString getPrereleaseSuffix() bool isReleaseVersion() { - return (ReleaseStatus == "r"); + return getVersion().IsReleaseVersion(); } @@ -106,6 +97,18 @@ Version::operator const QString &() const return mString; } +// This is application-specific interpretation of the prerelease data. +const QString Version::PrereleaseType() const +{ + // Extract the first identifier + QString type = mPrerelease.section(".", 0); + + // Remove any "-2", etc. that's included in the first identifier rather than as a dot-separated identifier + type = type.section("-", 0); + + return type.toLower(); +} + // Parse a version string as specified by Semantic Versioning 2.0.0, see https://semver.org/spec/v2.0.0.html void Version::ParseSemanticVersion() { diff --git a/oscar/version.h b/oscar/version.h index 10ecccbc..3edfc7cd 100644 --- a/oscar/version.h +++ b/oscar/version.h @@ -18,6 +18,7 @@ class Version public: Version(const QString & version_string); operator const QString &() const; + const QString PrereleaseType() const; bool IsReleaseVersion() const { return mPrerelease.isEmpty(); } bool IsValid() const { return mIsValid; } bool operator==(const Version & b) const { return Compare(*this, b) == 0; }