Add branch to defaultAppRoot unless release/beta build

This commit is contained in:
Mark Watkins 2018-06-10 01:39:19 +10:00
parent 1120836ff8
commit df8a4bfa34
2 changed files with 4 additions and 9 deletions

View File

@ -60,6 +60,9 @@ const QString getAppName()
const QString getDefaultAppRoot()
{
QString approot = STR_AppRoot;
if ((GIT_BRANCH != "master") || (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) || (ReleaseStatus.compare("rc", Qt::CaseInsensitive)==0) || (ReleaseStatus.compare("beta", Qt::CaseInsensitive)==0)))) {
approot += "-"+GIT_BRANCH;
}
return approot;
}

View File

@ -63,16 +63,8 @@ QString GetAppRoot()
QString HomeAppRoot = settings.value("Settings/AppRoot").toString();
const QString desktopFolder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
if (HomeAppRoot.isEmpty()) {
HomeAppRoot = desktopFolder + "/" + getDefaultAppRoot();
const QString testing = "-Testing";
QDir dir(HomeAppRoot+testing);
if (dir.exists()) {
HomeAppRoot += testing;
}
HomeAppRoot = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)+"/"+getDefaultAppRoot();
}
return HomeAppRoot;