diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index 34f44d9c..93157d0e 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -2796,5 +2796,5 @@ void MainWindow::on_actionReport_a_Bug_triggered() { QSettings settings(getDeveloperName(), getAppName()); QString language = settings.value(LangSetting).toString(); - QDesktopServices::openUrl(QUrl(QString("https://www.jedimark.net/tiki-index.php?page=Reporting+SleepyHead+Bugs&lang=%1&version=%2&platform=%3").arg(language).arg(VersionString).arg(PlatformString))); + QDesktopServices::openUrl(QUrl(QString("https://sleepyhead.jedimark.net/report_bugs.php?lang=%1&version=%2&platform=%3").arg(language).arg(VersionString).arg(PlatformString))); } diff --git a/sleepyhead/welcome.cpp b/sleepyhead/welcome.cpp index 97fec947..4a454e7e 100644 --- a/sleepyhead/welcome.cpp +++ b/sleepyhead/welcome.cpp @@ -132,6 +132,7 @@ QString GenerateWelcomeHTML() if (day && (cpap != nullptr)) { QString cpapimage = "qrc"+cpap->getPixmapPath(); + html += "

"; html+="
"+ @@ -151,15 +152,7 @@ QString GenerateWelcomeHTML() EventDataType ahi=(day->count(CPAP_Obstructive) + day->count(CPAP_Hypopnea) + day->count(CPAP_ClearAirway) + day->count(CPAP_Apnea)) / hours; - QString ahitext; - if (ahi < 0.000001) ahitext = QString("")+QObject::tr("perfect :)")+""; - else if (ahi < 1) ahitext = QObject::tr("pretty darn good"); - else if (ahi < 3) ahitext = QObject::tr("reasonably good"); - else if (ahi < 5) ahitext = QObject::tr("technically \"treated\""); - else if (ahi < 10) ahitext = QString("")+QObject::tr("not very good")+""; - else ahitext = QString("")+QObject::tr("horrible, please consult your doctor")+""; - - html += QObject::tr("You had an AHI of %1, which is considered %2").arg(ahi,0,'f',2).arg(ahitext)+"
"; + html += "
"; int seconds = int(hours * 3600.0) % 60; int minutes = int(hours * 60) % 60; @@ -169,16 +162,15 @@ QString GenerateWelcomeHTML() if (hours > 4) html += QObject::tr("You machine was on for %1.").arg(timestr)+"
"; else html += QObject::tr("You only had the mask on for %1.").arg(timestr)+"
"; + html += QObject::tr("You had an AHI of %1,").arg(ahi,0,'f',2)+" "; - EventDataType lat = day->timeAboveThreshold(CPAP_Leak, p_profile->cpap->leakRedline())/ 60.0; - EventDataType leaks = 1.0/hours * lat; - EventDataType leakmax = day->Max(CPAP_Leak); - QString leaktext; - if (leaks < 0.000001) leaktext=QObject::tr("You had no major mask leaks (maximum was %1 %2).").arg(leakmax,0,'f',2).arg(schema::channel[CPAP_Leak].units()); - else if (leaks < 0.01) leaktext=QObject::tr("You had a small but acceptable amount of major mask leakage."); - else if (leaks < 0.10) leaktext=QObject::tr("You had significant periods of major mask leakage."); - else leaktext=QObject::tr("Your mask is leaking way too much.. Talk to your CPAP advisor."); - html += leaktext + "
"; + + //EventDataType lat = day->timeAboveThreshold(CPAP_Leak, p_profile->cpap->leakRedline())/ 60.0; + //EventDataType leaks = 1.0/hours * lat; + EventDataType leakmax = day->avg(CPAP_Leak); + + + html += QObject::tr("average leaks were %1 %2).").arg(leakmax,0,'f',2).arg(schema::channel[CPAP_Leak].units())+"
"; CPAPMode cpapmode = (CPAPMode)(int)day->settings_max(CPAP_Mode); double perc= p_profile->general->prefCalcPercentile();