Add build metadata to version string.

Also update git scripts to make build metadata compliant with
semantic versioning.
This commit is contained in:
sawinglogz 2020-01-16 11:33:39 -05:00
parent 88957aeb7f
commit c71a953afd
4 changed files with 36 additions and 7 deletions

View File

@ -5,7 +5,7 @@ cd %DIR%
for /f %%i in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
for /f %%i in ('git rev-parse --short HEAD') do set GIT_REVISION=%%i
git diff-index --quiet HEAD -- || set GIT_REVISION=%GIT_REVISION%+
git diff-index --quiet HEAD -- || set GIT_REVISION=%GIT_REVISION%-plus
if "%GIT_BRANCH"=="" set GIT_BRANCH="Unknown"
if "%GIT_REVISION"=="" set GIT_REVISION="Unknown"

View File

@ -7,7 +7,7 @@ GIT_BRANCH=`git rev-parse --abbrev-ref HEAD`
GIT_REVISION=`git rev-parse --short HEAD`
$(git diff-index --quiet HEAD --)
if [ $? -ne 0 ]; then
GIT_REVISION="$GIT_REVISION+" # uncommitted changes
GIT_REVISION="${GIT_REVISION}-plus" # uncommitted changes
fi
[ -z "$GIT_BRANCH" ] && GIT_BRANCH="Unknown";

View File

@ -12,7 +12,6 @@
#include <QRegularExpression>
#define VERSION "1.1.0-beta-1"
extern const QString VersionString = VERSION;
#ifdef Q_OS_MAC
const QString PlatformString = "MacOSX";
@ -73,8 +72,9 @@ QString getPrereleaseSuffix()
return suffix;
}
// TODO: add preprocessor macros to build full version number including build metadata, accounting for tarball/non-git builds.
static const Version s_Version(VERSION);
static const Version s_Version(VERSION "+" + GIT_BRANCH + "-" + GIT_REVISION);
const Version & getVersion()
{
return s_Version;
@ -96,6 +96,26 @@ const QString & Version::toString() const
return mString;
}
// Alternate formatting of the version string for display or logging
const QString Version::minimalString() const
{
return toString().section("+", 0);
}
const QString & Version::getBuildMetadata() const
{
return mBuild;
}
const QString Version::displayString() const
{
if (IsReleaseVersion())
return minimalString();
else
return toString();
}
// This is application-specific interpretation of the prerelease data.
const QString Version::PrereleaseType() const
{

View File

@ -10,15 +10,13 @@
#ifndef VERSION_H
#define VERSION_H
#include <QVariant>
#include <QString>
class Version
{
friend class VersionTests;
public:
Version(const QString & version_string);
operator const QString &() const;
const QString & toString() const;
const QString PrereleaseType() const;
bool IsReleaseVersion() const { return mPrerelease.isEmpty(); }
bool IsValid() const { return mIsValid; }
@ -27,6 +25,17 @@ public:
bool operator<(const Version & b) const { return Compare(*this, b) < 0; }
bool operator>(const Version & b) const { return Compare(*this, b) > 0; }
//!brief Returns the full version string, including all metadata, used in reports
operator const QString &() const;
//!brief Returns the full version string, including all metadata, used in reports
const QString & toString() const;
//!brief Returns the version string to display in the UI, without build metadata if a release version
const QString displayString() const;
//!brief Returns the version string without any build metadata
const QString minimalString() const;
//!brief Returns the build metadata
const QString & getBuildMetadata() const;
protected:
const QString mString;
bool mIsValid;