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 + "]"; }