mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +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 version = STR_TR_AppVersion;
|
||||
version += " [";
|
||||
if (GIT_BRANCH != "master") {
|
||||
version += GIT_BRANCH+"-";
|
||||
version += " [Branch: " + GIT_BRANCH + "]";
|
||||
}
|
||||
version += GIT_REVISION;
|
||||
// version += GIT_REVISION;
|
||||
#ifndef UNITTEST_MODE
|
||||
// There is no graphics engine on the console.
|
||||
version += QString(" ") + getGraphicsEngine();
|
||||
// version += QString(" ") + getGraphicsEngine();
|
||||
#endif
|
||||
version += "]";
|
||||
|
||||
// version += "]";
|
||||
#ifdef BROKEN_OPENGL_BUILD
|
||||
version += "[ "+CSTR_GFX_BrokenGL+"]";
|
||||
#endif
|
||||
return version;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user