Show commit id in title bar for all except Release versions.

This commit is contained in:
Seeker4 2019-07-24 01:47:15 -07:00
parent 2568f79a99
commit 376d04803a

View File

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