diff --git a/sleepyhead/SleepLib/common.cpp b/sleepyhead/SleepLib/common.cpp index 500d9128..f5132b37 100644 --- a/sleepyhead/SleepLib/common.cpp +++ b/sleepyhead/SleepLib/common.cpp @@ -11,6 +11,7 @@ #include #include +#include "version.h" #include "profiles.h" // Used by internal settings @@ -23,6 +24,11 @@ const QString getDeveloperName() const QString getAppName() { QString name = STR_AppName; +#ifdef GIT_BRANCH + if ((QString(GIT_BRANCH) != "master") || (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) || (ReleaseStatus.compare("rc", Qt::CaseInsensitive)==0) || (ReleaseStatus.compare("beta", Qt::CaseInsensitive)==0)))) { + name += "-"+QString(GIT_BRANCH); + } +#endif return name; } diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp index 7ff1ae2a..b7d6279d 100644 --- a/sleepyhead/main.cpp +++ b/sleepyhead/main.cpp @@ -55,7 +55,7 @@ void sDelay(int s) int compareVersion(QString version); -void MigrateSettings() +/*void MigrateSettings() { QSettings settings(getDeveloperName(), getAppName()); if (settings.contains("Version")) { return; } // done, we are new @@ -76,7 +76,7 @@ void MigrateSettings() qDebug() << keys; -} +} */ int main(int argc, char *argv[]) @@ -93,8 +93,7 @@ int main(int argc, char *argv[]) QApplication a(argc, argv); QStringList args = QCoreApplication::arguments(); - // Ok, first things first... Migrate the -Testing QSettings over - MigrateSettings(); + // MigrateSettings(); QSettings settings(getDeveloperName(), getAppName());