mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Remove GIT revision and graphics engine from titlebar (info remains in debug log). Retain [Branch] and [LegacyGFX] for a BrokenGL build.
This commit is contained in:
parent
91bf0d097e
commit
86d0c11ddd
@ -177,17 +177,19 @@ QString getGraphicsEngine()
|
|||||||
QString getBranchVersion()
|
QString getBranchVersion()
|
||||||
{
|
{
|
||||||
QString version = STR_TR_AppVersion;
|
QString version = STR_TR_AppVersion;
|
||||||
version += " [";
|
|
||||||
if (GIT_BRANCH != "master") {
|
if (GIT_BRANCH != "master") {
|
||||||
version += GIT_BRANCH+"-";
|
version += " [Branch: " + GIT_BRANCH + "]";
|
||||||
}
|
}
|
||||||
version += GIT_REVISION;
|
// version += GIT_REVISION;
|
||||||
#ifndef UNITTEST_MODE
|
#ifndef UNITTEST_MODE
|
||||||
// There is no graphics engine on the console.
|
// There is no graphics engine on the console.
|
||||||
version += QString(" ") + getGraphicsEngine();
|
// version += QString(" ") + getGraphicsEngine();
|
||||||
#endif
|
#endif
|
||||||
version += "]";
|
|
||||||
|
|
||||||
|
// version += "]";
|
||||||
|
#ifdef BROKEN_OPENGL_BUILD
|
||||||
|
version += "[ "+CSTR_GFX_BrokenGL+"]";
|
||||||
|
#endif
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user