no need for pre release tag
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
parent
cb35fb8d0e
commit
4123343130
5 changed files with 117 additions and 33 deletions
|
@ -58,7 +58,6 @@ Config::Config()
|
|||
// Version information
|
||||
VERSION_MAJOR = @Launcher_VERSION_MAJOR@;
|
||||
VERSION_MINOR = @Launcher_VERSION_MINOR@;
|
||||
VERSION_PRERELEASE = "@Launcher_VERSION_PRERELEASE@";
|
||||
|
||||
BUILD_PLATFORM = "@Launcher_BUILD_PLATFORM@";
|
||||
BUILD_ARTIFACT = "@Launcher_BUILD_ARTIFACT@";
|
||||
|
@ -129,7 +128,7 @@ Config::Config()
|
|||
|
||||
QString Config::versionString() const
|
||||
{
|
||||
return QString("%1.%2%3").arg(VERSION_MAJOR).arg(VERSION_MINOR).arg(VERSION_PRERELEASE);
|
||||
return QString("%1.%2").arg(VERSION_MAJOR).arg(VERSION_MINOR);
|
||||
}
|
||||
|
||||
QString Config::printableVersionString() const
|
||||
|
|
|
@ -60,8 +60,6 @@ class Config {
|
|||
/// The minor version number.
|
||||
int VERSION_MINOR;
|
||||
|
||||
QString VERSION_PRERELEASE;
|
||||
|
||||
/**
|
||||
* The version channel
|
||||
* This is used by the updater to determine what channel the current version came from.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue