From 376d04803a518542cf03e6f3b2ef628a2f7a5ca1 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Wed, 24 Jul 2019 01:47:15 -0700 Subject: [PATCH] Show commit id in title bar for all except Release versions. --- oscar/SleepLib/common.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index ce3b3be2..380ec5f3 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -177,6 +177,11 @@ QString getGraphicsEngine() QString getBranchVersion() { QString version = STR_TR_AppVersion; + + if (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) || + (ReleaseStatus.compare("release", Qt::CaseInsensitive)==0))) + version += " ("+GIT_REVISION + ")"; + if (GIT_BRANCH != "master") { version += " [Branch: " + GIT_BRANCH + "]"; }