From f4f1a4a002be5e3c2b26d81703a1654067c3854b Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Sun, 2 Jun 2019 10:24:17 -0700 Subject: [PATCH] Clearly separate build data from run-time data. --- oscar/SleepLib/common.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index 8164e190..e50604c1 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -192,9 +192,13 @@ QStringList buildInfo; QStringList makeBuildInfo (QString relinfo, QString forcedEngine){ buildInfo << (STR_AppName + " " + VersionString + " " + relinfo); buildInfo << (QObject::tr("Built with Qt") + " " + QT_VERSION_STR + " on " + __DATE__ + " " + __TIME__); - buildInfo << (getBranchVersion() + ", " + QObject::tr("Revision") + " " + GIT_REVISION); - buildInfo << (QObject::tr("Built on") + " " + QSysInfo::machineHostName() + " " - + QObject::tr("running") + " " + QSysInfo::prettyProductName()); + QString branch = ""; + if (GIT_BRANCH != "master") { + branch = QObject::tr("Branch:") + " " + GIT_BRANCH + ", "; + } + buildInfo << branch + (QObject::tr("Revision")) + " " + GIT_REVISION; + buildInfo << QString(""); + buildInfo << (QObject::tr("Operating system:") + " " + QSysInfo::prettyProductName()); buildInfo << (QObject::tr("Graphics Engine:") + " " + getOpenGLVersionString()); buildInfo << (QObject::tr("Graphics Engine type:") + " " + getGraphicsEngine()); if (forcedEngine != "")