From 68c48b2c8a0c454f8746f6ab259252a6c72c4b5e Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Fri, 17 Jun 2022 21:55:55 +0200 Subject: feat: store git tag in buildconfig Signed-off-by: Sefa Eyeoglu --- buildconfig/BuildConfig.cpp.in | 4 +++- buildconfig/BuildConfig.h | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'buildconfig') diff --git a/buildconfig/BuildConfig.cpp.in b/buildconfig/BuildConfig.cpp.in index 70f8f7f0..fa0fa20e 100644 --- a/buildconfig/BuildConfig.cpp.in +++ b/buildconfig/BuildConfig.cpp.in @@ -62,8 +62,10 @@ Config::Config() UPDATER_BASE = "@Launcher_UPDATER_BASE@"; GIT_COMMIT = "@Launcher_GIT_COMMIT@"; + GIT_TAG = "@Launcher_GIT_TAG@"; GIT_REFSPEC = "@Launcher_GIT_REFSPEC@"; - if (GIT_REFSPEC == QStringLiteral("GITDIR-NOTFOUND")) + if (GIT_REFSPEC == QStringLiteral("GITDIR-NOTFOUND") + || GIT_TAG == QStringLiteral("-128-NOTFOUND")) { VERSION_CHANNEL = QStringLiteral("stable"); } diff --git a/buildconfig/BuildConfig.h b/buildconfig/BuildConfig.h index 8594e46d..473d7ae7 100644 --- a/buildconfig/BuildConfig.h +++ b/buildconfig/BuildConfig.h @@ -83,6 +83,9 @@ class Config { /// The git commit hash of this build QString GIT_COMMIT; + /// The git tag of this build + QString GIT_TAG; + /// The git refspec of this build QString GIT_REFSPEC; -- cgit