diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp
index 3d3984d6..230493c1 100644
--- a/sleepyhead/main.cpp
+++ b/sleepyhead/main.cpp
@@ -179,11 +179,13 @@ int main(int argc, char *argv[])
initializeStrings(); // Important, call this AFTER translator is installed.
a.setApplicationName(STR_TR_SleepyHead);
+
#if defined(Q_OS_WIN)
-#ifndef BROKEN_OPENGL_BUILD
+ // True openGL will meanly return nothing here, but ANGLE will give useful info
QString glversion = (char *)glGetString(GL_VERSION);
- qDebug() << "OpenGL Version detected:" << glversion;
- // if (QSysInfo::windowsVersion() < QSysInfo::WV_VISTA) {
+
+ #ifndef BROKEN_OPENGL_BUILD
+ if (QSysInfo::windowsVersion() < QSysInfo::WV_VISTA) {
if (glversion.contains("ANGLE")) {
QMessageBox::warning(nullptr, QObject::tr("You have the wrong version of SleepyHead"),
QObject::tr("This build of SleepyHead was designed to work with computers lacking full OpenGL 2.0 support, and only runs on (native) Windows Vista or higher.") + "
"+
@@ -191,18 +193,23 @@ int main(int argc, char *argv[])
QObject::tr("Because graphs will not render correctly, this version will now exit."), QMessageBox::Ok, QMessageBox::Ok);
exit(1);
}
-// }
-#else
+ }
+ #else
+ settings.remove("Settings/BrokenGL2");
if (QSysInfo::windowsVersion() > QSysInfo::WV_VISTA) {
- QMessageBox::information(nullptr, QObject::tr("A faster build may be available"),
- QObject::tr("This special build of SleepyHead was designed to work with computers lacking OpenGL 2.0 support.") + "
"+
- QObject::tr("There is another special build available for computers running Windows Vista or higher that do not support OpenGL 2.0, tagged 'ANGLE', which will work faster on your computer.")+"
"+
- QObject::tr("If your running Windows in a Virutal machine, disregard this message, because the version you are running works best.")
-
+ if (!settings.contains("Settings/BrokenGL2")) {
+ QMessageBox::information(nullptr, QObject::tr("A faster build may be available"),
+ QObject::tr("This special build of SleepyHead was designed to work with older computers lacking OpenGL 2.0 support.") + "
"+
+ QObject::tr("There is a better build available for computers running (native) Windows Vista or higher that do not support OpenGL 2.0, tagged '-ANGLE', which will work faster on your computer.")+"
"+
+ QObject::tr("If your running Windows in a Virutal Machine, like VirtualBox or VMware, disregard this message, because the version you are running works best.")+"
"+
+ QObject::tr("There is no harm in running this version, it's just quite a bit slower.")+"
"+
+ QObject::tr("You will not be shown this message again."),
QMessageBox::Ok, QMessageBox::Ok);
+ settings.setValue("Settings/BrokenGL2", true);
+ }
}
-#endif
+ #endif
#endif
////////////////////////////////////////////////////////////////////////////////////////////
@@ -400,6 +407,7 @@ retry_directory:
// Must be initialized AFTER profile creation
MainWindow w;
+
mainwin = &w;
if (check_updates) { mainwin->CheckForUpdates(); }
diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp
index adab1e05..351a4c46 100644
--- a/sleepyhead/mainwindow.cpp
+++ b/sleepyhead/mainwindow.cpp
@@ -109,7 +109,18 @@ MainWindow::MainWindow(QWidget *parent) :
ui->warningLabel->hide();
#endif
- if (QString(GIT_BRANCH) != "master") { version += " (" + QString(GIT_BRANCH)+" branch)"; }
+#ifdef BROKEN_OPENGL_BUILD
+ version += " BrokenGL2";
+#else
+ QString glversion = (char *)glGetString(GL_VERSION);
+ if (glversion.contains("ANGLE")) {
+ version += " ANGLE";
+ } else {
+ version += " OpenGL";
+ }
+
+#endif
+ if (QString(GIT_BRANCH) != "master") { version += " [" + QString(GIT_BRANCH)+" branch]"; }
this->setWindowTitle(STR_TR_SleepyHead + QString(" v%1 (" + tr("Profile") + ": %2)").arg(version).arg(PREF[STR_GEN_Profile].toString()));
@@ -406,7 +417,6 @@ void MainWindow::Startup()
importCPAPBackups();
PROFILE.p_preferences[STR_PREF_ReimportBackup]=false;
}
-
}
int MainWindow::importCPAP(const QString &path, const QString &message)
@@ -1051,87 +1061,100 @@ void MainWindow::aboutBoxLinkClicked(const QUrl &url)
void MainWindow::on_action_About_triggered()
{
+ QString gfxengine;
+#ifdef BROKEN_OPENGL_BUILD
+ gfxengine = "BrokenGL2";
+#else
+ QString glversion = (char *)glGetString(GL_VERSION);
+ if (glversion.contains("ANGLE")) {
+ gfxengine = "ANGLE";
+ } else {
+ gfxengine = "OpenGL";
+ }
+
+#endif
QString gitrev = QString(GIT_REVISION);
if (!gitrev.isEmpty()) { gitrev = tr("Revision:")+" " + gitrev + " (" + QString(GIT_BRANCH) + " " + tr("branch") + ")"; }
// "
"
- "" + STR_TR_SleepyHead + " v%1 (%2)" +
- tr("Build Date") + ": %3 %4 " + - tr("Copyright") + " ©2011-2014 Mark Watkins (jedimark) \n" + - tr("This software is released under the GNU Public License v3.0 ") + - " " + "" + "" + "
Disclaimer " + + tr("This is NOT medical software, it is merely a research tool that provides a visual interpretation of data recorded by supported devices.") + + + " " + tr("This software is NOT suitable for medical diagnostics purposes, neither is it fit for CPAP complaince reporting purposes, or ANY other medical use for that matter.") + + " " + "" + + tr("The author and anyone associated with him accepts NO responsibilty for damages, issues or non-issues resulting from the use or mis-use of this software.") + + " " + + tr("Use this software entirely at your own risk.") + " " + " |