diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index a296d8af..8164e190 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -180,15 +180,9 @@ QString getBranchVersion() if (GIT_BRANCH != "master") { version += " [Branch: " + GIT_BRANCH + "]"; } -// version += GIT_REVISION; -#ifndef UNITTEST_MODE - // There is no graphics engine on the console. -// version += QString(" ") + getGraphicsEngine(); -#endif -// version += "]"; #ifdef BROKEN_OPENGL_BUILD - version += "[ "+CSTR_GFX_BrokenGL+"]"; + version += " ["+CSTR_GFX_BrokenGL+"]"; #endif return version; } @@ -196,10 +190,9 @@ QString getBranchVersion() QStringList buildInfo; QStringList makeBuildInfo (QString relinfo, QString forcedEngine){ - buildInfo << (STR_AppName + " " + VersionString + (relinfo!="" ? " " : "") + relinfo); + buildInfo << (STR_AppName + " " + VersionString + " " + relinfo); buildInfo << (QObject::tr("Built with Qt") + " " + QT_VERSION_STR + " on " + __DATE__ + " " + __TIME__); - buildInfo << (QObject::tr("Branch") + " " + GIT_BRANCH + ", " - + QObject::tr("Revision") + " " + GIT_REVISION); + buildInfo << (getBranchVersion() + ", " + QObject::tr("Revision") + " " + GIT_REVISION); buildInfo << (QObject::tr("Built on") + " " + QSysInfo::machineHostName() + " " + QObject::tr("running") + " " + QSysInfo::prettyProductName()); buildInfo << (QObject::tr("Graphics Engine:") + " " + getOpenGLVersionString()); @@ -210,6 +203,11 @@ QStringList makeBuildInfo (QString relinfo, QString forcedEngine){ return buildInfo; } +QStringList addBuildInfo (QString value) { + buildInfo << (value); + return buildInfo; +} + QStringList getBuildInfo() { return buildInfo; } diff --git a/oscar/SleepLib/common.h b/oscar/SleepLib/common.h index dedfc66f..434a6ef0 100644 --- a/oscar/SleepLib/common.h +++ b/oscar/SleepLib/common.h @@ -47,6 +47,7 @@ const QString & gitBranch(); QStringList makeBuildInfo(QString relinfo, QString forcedEngine); QStringList getBuildInfo(); +QStringList addBuildInfo (QString value); QByteArray gCompress(const QByteArray& data); QByteArray gUncompress(const QByteArray &data); diff --git a/oscar/main.cpp b/oscar/main.cpp index 250ca120..1911fd48 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -22,8 +22,6 @@ #include #include "version.h" -//#include "git_info.h" -//#include "SleepLib/common.h" #include "logger.h" #include "mainwindow.h" #include "SleepLib/profiles.h" @@ -343,16 +341,14 @@ int main(int argc, char *argv[]) { initializeLogger(); QThread::msleep(50); // Logger takes a little bit to catch up + #ifdef QT_DEBUG QString relinfo = " debug"; #else QString relinfo = ""; #endif relinfo = "("+QSysInfo::kernelType()+" "+QSysInfo::currentCpuArchitecture()+relinfo+")"; - - QStringList info = makeBuildInfo(relinfo, forcedEngine); - for (int i = 0; i < info.size(); ++i) - qDebug().noquote() << info.at(i); + qDebug().noquote() << STR_AppName << VersionString << relinfo << "Built with Qt" << QT_VERSION_STR << __DATE__ << __TIME__; //////////////////////////////////////////////////////////////////////////////////////////// // Language Selection @@ -366,6 +362,12 @@ int main(int argc, char *argv[]) { mainwin = new MainWindow; +// Moved buildInfo calls to after translation is available as makeBuildInfo includes tr() calls + + QStringList info = makeBuildInfo(relinfo, forcedEngine); + for (int i = 0; i < info.size(); ++i) + qDebug().noquote() << info.at(i); + //////////////////////////////////////////////////////////////////////////////////////////// // OpenGL Detection //////////////////////////////////////////////////////////////////////////////////////////// @@ -475,6 +477,10 @@ int main(int argc, char *argv[]) { qDebug() << "AppData folder already exists, so ..."; qDebug() << "Using " + GetAppData() + " as OSCAR data folder"; + addBuildInfo(""); + addBuildInfo(QObject::tr("Data directory:") + " " + GetAppData()); + + QDir newDir(GetAppData()); #if QT_VERSION < QT_VERSION_CHECK(5,9,0) if ( ! newDir.exists() || newDir.count() == 0 ) { // directoy doesn't exist yet or is empty, try to migrate old data diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index cec80bfa..f4f9b634 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -2549,6 +2549,15 @@ void MainWindow::on_actionReport_a_Bug_triggered() QMessageBox::information(nullptr, STR_MessageBox_Error, tr("Reporting issues is not yet implemented")); } +void MainWindow::on_actionSystem_Information_triggered() +{ + QString text = ""; // tr("OSCAR version:") + "
"; + QStringList info = getBuildInfo(); + for (int i = 0; i < info.size(); ++i) + text += info.at(i) + "
"; + QMessageBox::information(nullptr, tr("OSCAR Information"), text); +} + void MainWindow::on_profilesButton_clicked() { ui->tabWidget->setCurrentWidget(profileSelector); diff --git a/oscar/mainwindow.h b/oscar/mainwindow.h index 442499c4..87c91448 100644 --- a/oscar/mainwindow.h +++ b/oscar/mainwindow.h @@ -320,6 +320,8 @@ class MainWindow : public QMainWindow void on_actionReport_a_Bug_triggered(); + void on_actionSystem_Information_triggered(); + void on_profilesButton_clicked(); void reloadProfile(); diff --git a/oscar/mainwindow.ui b/oscar/mainwindow.ui index b8f216de..a84e8fae 100644 --- a/oscar/mainwindow.ui +++ b/oscar/mainwindow.ui @@ -160,6 +160,15 @@ + + + + 0 + 0 + 0 + + + @@ -297,6 +306,15 @@ + + + + 0 + 0 + 0 + + + @@ -434,6 +452,15 @@ + + + + 0 + 0 + 0 + + + @@ -636,6 +663,15 @@ + + + + 0 + 0 + 0 + + + @@ -773,6 +809,15 @@ + + + + 0 + 0 + 0 + + + @@ -910,6 +955,15 @@ + + + + 0 + 0 + 0 + + + @@ -1211,7 +1265,7 @@ QToolBox::tab:selected { 0 0 - 327 + 175 687 @@ -1669,7 +1723,7 @@ border: 2px solid #56789a; border-radius: 30px; 0 0 - 327 + 175 687 @@ -1948,6 +2002,15 @@ border: 2px solid #56789a; border-radius: 30px; + + + + 0 + 0 + 0 + + + @@ -2118,6 +2181,15 @@ border: 2px solid #56789a; border-radius: 30px; + + + + 0 + 0 + 0 + + + @@ -2288,6 +2360,15 @@ border: 2px solid #56789a; border-radius: 30px; + + + + 0 + 0 + 0 + + + @@ -2390,6 +2471,15 @@ border: 2px solid #56789a; border-radius: 30px; + + + + 255 + 255 + 255 + + + @@ -2455,6 +2545,15 @@ border: 2px solid #56789a; border-radius: 30px; + + + + 255 + 255 + 255 + + + @@ -2520,6 +2619,15 @@ border: 2px solid #56789a; border-radius: 30px; + + + + 255 + 255 + 255 + + + @@ -2728,7 +2836,7 @@ p, li { white-space: pre-wrap; } 0 0 - 327 + 175 687 @@ -2856,6 +2964,7 @@ p, li { white-space: pre-wrap; } + @@ -3185,6 +3294,11 @@ p, li { white-space: pre-wrap; } Report an Issue + + + System Information + +