From 6fcc4e9af18b99e4607f8d1f83d4e4dcb3958830 Mon Sep 17 00:00:00 2001
From: Phil Olynyk
Date: Thu, 18 Jul 2019 21:16:05 -0400
Subject: [PATCH 1/6] Add number of years times 12 to lastmonth - then trim to
12 max
---
oscar/statistics.cpp | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp
index e38a3b3f..9bc5ea95 100644
--- a/oscar/statistics.cpp
+++ b/oscar/statistics.cpp
@@ -1068,14 +1068,16 @@ QString Statistics::GenerateCPAPUsage()
if (p_profile->general->statReportMode() == STAT_MODE_MONTHLY) {
int firstMonth = firstcpap.month();
int lastMonth = lastcpap.month();
- if (lastMonth <= firstMonth && firstcpap.year() != lastcpap.year())
- lastMonth += 12; // handle time extending to next year
+ int years = lastcpap.year() - firstcpap.year();
+ if (lastMonth <= firstMonth)
+ lastMonth += (12 * years); // handle time extending to next year
number_periods = lastMonth - firstMonth + 1;
if (number_periods < 1) {
qDebug() << "*** Begin" << firstcpap << "beginMonth" << firstMonth << "lastMonth" << lastMonth << "periods" << number_periods;
number_periods = 1;
}
+ qDebug() << "Number of months for stats (trim to 12 max)" << number_periods;
// But not more than one year
if (number_periods > 12) {
number_periods = 12;
From 3f42053a1d8e7c1aaa468bccc0f01e7e00b3b8a6 Mon Sep 17 00:00:00 2001
From: Seeker4
Date: Thu, 18 Jul 2019 22:36:07 -0700
Subject: [PATCH 2/6] Yet another attempt to calculate the number of months for
Statistics page monthly view
---
oscar/statistics.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp
index 9bc5ea95..a830c667 100644
--- a/oscar/statistics.cpp
+++ b/oscar/statistics.cpp
@@ -1069,8 +1069,7 @@ QString Statistics::GenerateCPAPUsage()
int firstMonth = firstcpap.month();
int lastMonth = lastcpap.month();
int years = lastcpap.year() - firstcpap.year();
- if (lastMonth <= firstMonth)
- lastMonth += (12 * years); // handle time extending to next year
+ lastMonth += (12 * years); // handle time extending to next year
number_periods = lastMonth - firstMonth + 1;
if (number_periods < 1) {
From 9d25359138a6883783acfe7668468349221b1d93 Mon Sep 17 00:00:00 2001
From: Seeker4
Date: Thu, 18 Jul 2019 22:37:53 -0700
Subject: [PATCH 3/6] Version code and release notes for Oscar-1.1.0-testing-1
---
oscar/docs/release_notes.html | 45 ++++++++++++++++++++++++++++-------
oscar/version.h | 6 ++---
2 files changed, 40 insertions(+), 11 deletions(-)
diff --git a/oscar/docs/release_notes.html b/oscar/docs/release_notes.html
index 7e51ed2e..2c20c306 100644
--- a/oscar/docs/release_notes.html
+++ b/oscar/docs/release_notes.html
@@ -7,16 +7,45 @@ Which was written and copyright 2011-2018 © Mark Watkins
-Changes and fixes in OSCAR v1.0.2-beta-1
+Changes and fixes in OSCAR v1.1.0-testing-1
+
NOTE: Translations have NOT yet been updated for these changes
- Portions of OSCAR are © 2019 by The OSCAR Team
-- Offer migration to non-default directory on first use
-- Add "Use Legacy Graphics.reg" to ask OSCAR to use simpler graphics for older systems
-- Change Preferences measurement units choice to Metric or English
-- Improve display of cmH2O numbers
-- Re-organize build instructions and other cleanup
-- Show graphics engine in title bar correctly
-- Adjust size of Preferences dialog to fit smaller screens
+- [new] Offer migration if non-default directory is selected on first use
+- [new] Press SHIFT key when starting OSCAR to use Software Graphics Engine
+- [new] Support for DreamStation BiPAP autoSV (900X) should now be complete
+- [new] Improved Dreamstation support
+- [new] Improve oximeter import for CM550D+
+- [new] Disable Dark Mode on Mac
+- [new] Show hours/day constituting compliance on Statistics page
+- [new] Better order of graphs on Daily page for newly created profiles
+- [new] Help/System Information shows info about OSCAR, OS, and data location
+- [new] Move pie chart option from Preferences dialog to View menu
+- [new] Hide pie chart when capturing screen
+- [new] --datadir option now allows fully qualified name on Windows
+- [fix] Fix some oximeter import issues
+- [fix] Use local time rather than UTC time in oximeter import
+- [fix] Improve screen capture on Mac
+- [fix] Fix crashes in CPAP data rebuild, purging of a machine
+- [fix] Prevent crash if taking screen shot before profile is opened
+- [fix] Increase mask vent ranges
+- [fix] Correct session bar if no sessions are present
+- [fix] Correct months shown on Statistics page monthly view
+- [fix] Compute compliance on Statistics page based on total days not days used
+- [fix] Paginate statistics report when printing
+- [fix] Fix "phantom date" (12/31/1969) on some ResMed imports
+- [fix] Default font substituted when a specified font is not valid
+- [fix] Change Preferences measurement units choice to Metric or English
+- [fix] Improve display of cmH2O numbers
+- [fix] Show graphics engine in title bar correctly
+- [fix] Adjust size of Preferences dialog to fit smaller screens
+- [fix] Label climate control as manual or auto correctly on ResMed import
+- [fix] Move less useful information from titlebar to Help/System Information
+- [fix] Change "Prescription Settings" to "Machine Settings" message
+- [fix] Improve icons, especially smaller ones
+- [fix] Correct Mac menu issues
+- [fix] Improve messages in debug pane
+- [fix] Re-organize build instructions and other cleanup
diff --git a/oscar/version.h b/oscar/version.h
index 943c4110..d23b5769 100644
--- a/oscar/version.h
+++ b/oscar/version.h
@@ -13,9 +13,9 @@
#include "build_number.h"
const int major_version = 1; // incompatible API changes
-const int minor_version = 0; // new features that don't break things
-const int revision_number = 2; // bugfixes, revisions
-const QString ReleaseStatus = "beta"; // testing/nightly/unstable, beta/untamed, rc/almost, r/stable
+const int minor_version = 1; // new features that don't break things
+const int revision_number = 0; // bugfixes, revisions
+const QString ReleaseStatus = "testing"; // testing/nightly/unstable, beta/untamed, rc/almost, r/stable
const QString VersionString = QString("%1.%2.%3-%4-%5").arg(major_version).arg(minor_version).arg(revision_number).arg(ReleaseStatus).arg(build_number);
const QString ShortVersionString = QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number);
From b4a64fa8e67b5cd65490ffc30a422c446680649f Mon Sep 17 00:00:00 2001
From: Seeker4
Date: Thu, 18 Jul 2019 22:39:08 -0700
Subject: [PATCH 4/6] Hide pie chart when taking screen capture. Refactor code
in daily.cpp to make use clearer and save html for possible future use.
---
oscar/daily.cpp | 207 ++++++++++++++++++++++++++++----------------
oscar/daily.h | 4 +
oscar/mainwindow.ui | 4 +-
3 files changed, 139 insertions(+), 76 deletions(-)
diff --git a/oscar/daily.cpp b/oscar/daily.cpp
index 3935d78a..7aad0aac 100644
--- a/oscar/daily.cpp
+++ b/oscar/daily.cpp
@@ -42,6 +42,20 @@
extern MainWindow * mainwin;
+QString htmlLeftHeader;
+QString htmlLeftAHI;
+QString htmlLeftMachineInfo;
+QString htmlLeftSleepTime;
+QString htmlLeftIndices;
+QString htmlLeftPieChart = "";
+QString htmlLeftNoHours = "";
+QString htmlLeftStatistics;
+QString htmlLeftOximeter;
+QString htmlLeftMachineSettings;
+QString htmlLeftSessionInfo;
+QString htmlLeftFooter;
+
+
// This was Sean Stangl's idea.. but I couldn't apply that patch.
inline QString channelInfo(ChannelID code) {
return schema::channel[code].fullname()+"\n"+schema::channel[code].description()+"\n("+schema::channel[code].units()+")";
@@ -579,12 +593,18 @@ void Daily::hideSpaceHogs()
if (AppSetting->calendarVisible()) {
ui->calendarFrame->setVisible(false);
}
+ if (AppSetting->showPieChart()) {
+ webView->setHtml(getLeftSidebar(false));
+ }
}
void Daily::showSpaceHogs()
{
if (AppSetting->calendarVisible()) {
ui->calendarFrame->setVisible(true);
}
+ if (AppSetting->showPieChart()) {
+ webView->setHtml(getLeftSidebar(true));
+ }
}
void Daily::on_calendar_currentPageChanged(int year, int month)
@@ -1307,6 +1327,63 @@ QString Daily::getSleepTime(Day * day)
return html;
}
+QString Daily::getPieChart (float values, Day * day) {
+ qDebug() << "Daily:getPieChart, values" << values;
+ QString html = "";
+ if (values > 0) {
+// html += " |
";
+ html += QString("%1 |
").arg(tr("Event Breakdown"));
+ eventBreakdownPie()->setShowTitle(false);
+
+ int w=155;
+ int h=155;
+ QPixmap pixmap=eventBreakdownPie()->renderPixmap(w,h,false);
+ if (!pixmap.isNull()) {
+ QByteArray byteArray;
+ QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
+ buffer.open(QIODevice::WriteOnly);
+ pixmap.save(&buffer, "PNG");
+ html += " |
\n";
+ } else {
+ html += ""+tr("Unable to display Pie Chart on this system")+" |
\n";
+ }
+ } else if ( day->channelHasData(CPAP_Obstructive)
+ || day->channelHasData(CPAP_Hypopnea)
+ || day->channelHasData(CPAP_ClearAirway)
+ || day->channelHasData(CPAP_RERA)
+ || day->channelHasData(CPAP_Apnea)
+ || day->channelHasData(CPAP_FlowLimit)
+ || day->channelHasData(CPAP_SensAwake)
+ ) {
+ html += " |
\n";
+ }
+ html+="
\n";
+ html+="
\n";
+
+ return html;
+}
+
+// honorPieChart true - show pie chart if it is enabled. False, do not show pie chart
+QString Daily::getLeftSidebar (bool honorPieChart) {
+ QString html = htmlLeftHeader
+ + htmlLeftAHI
+ + htmlLeftMachineInfo
+ + htmlLeftSleepTime
+ + htmlLeftIndices;
+ // Include pie chart if wanted and enabled.
+ if (honorPieChart && AppSetting->showPieChart())
+ html += htmlLeftPieChart;
+
+ html += htmlLeftNoHours
+ + htmlLeftStatistics
+ + htmlLeftOximeter
+ + htmlLeftMachineSettings
+ + htmlLeftSessionInfo
+ + htmlLeftFooter;
+
+ return html;
+}
+
QVariant MyTextBrowser::loadResource(int type, const QUrl &url)
{
if (type == QTextDocument::ImageResource && url.scheme().compare(QLatin1String("data"), Qt::CaseInsensitive) == 0) {
@@ -1355,7 +1432,19 @@ void Daily::Load(QDate date)
lastcpapday=day;
- QString html=""
+ // Clear the components of the left sidebar prior to recreating them
+ htmlLeftAHI.clear();
+ htmlLeftMachineInfo.clear();
+ htmlLeftSleepTime.clear();
+ htmlLeftIndices.clear();
+ htmlLeftPieChart.clear();
+ htmlLeftNoHours.clear();
+ htmlLeftStatistics.clear();
+ htmlLeftOximeter.clear();
+ htmlLeftMachineSettings.clear();
+ htmlLeftSessionInfo.clear();
+
+ htmlLeftHeader = ""
""
"";
@@ -1420,8 +1509,8 @@ void Daily::Load(QDate date)
ahi/=hours;
if (hours>0) {
- html+="\n";
- html+="";
+ htmlLeftAHI="\n";
+ htmlLeftAHI+="";
if (!isBrick) {
ChannelID ahichan=CPAP_AHI;
QString ahiname=STR_TR_AHI;
@@ -1429,19 +1518,20 @@ void Daily::Load(QDate date)
ahichan=CPAP_RDI;
ahiname=STR_TR_RDI;
}
- html+=QString("%3 %5 | \n")
+ htmlLeftAHI+=QString("%3 %5 | \n")
.arg("#F88017").arg(COLOR_Text.name()).arg(ahiname).arg(schema::channel[ahichan].fullname()).arg(ahi,0,'f',2);
} else {
- html+=QString("%2 | \n")
+ htmlLeftAHI+=QString("%2 | \n")
.arg("#F88017").arg(tr("BRICK! :("));
}
- html+="
\n";
- html+="
\n";
- html+=getCPAPInformation(day);
- html+=getSleepTime(day);
+ htmlLeftAHI+="
\n";
+ htmlLeftAHI+="
\n";
- html+="\n";
+ htmlLeftMachineInfo = getCPAPInformation(day);
+ htmlLeftSleepTime = getSleepTime(day);
+
+ htmlLeftIndices = "\n";
quint32 zchans = schema::SPAN | schema::FLAG;
bool show_minors = true;
@@ -1469,97 +1559,66 @@ void Daily::Load(QDate date)
// than the duration of timed breaths per hour.
values[code] = val;
QColor altcolor = (brightness(chan.defaultColor()) < 0.3) ? Qt::white : Qt::black; // pick a contrasting color
- html+=QString("%3 | %4 |
\n")
+ htmlLeftIndices+=QString("%3 | %4 |
")
.arg(chan.defaultColor().name()).arg(altcolor.name()).arg(chan.fullname()).arg(data).arg(code);
}
- html+="
";
+ htmlLeftIndices+="
";
- html+="\n";
- // Show Event Breakdown pie chart
- if ((hours > 0) && AppSetting->showPieChart()) { // AHI Pie Chart
- if ((values[CPAP_Obstructive] + values[CPAP_Hypopnea] + values[CPAP_ClearAirway] + values[CPAP_Apnea] + values[CPAP_RERA] + values[CPAP_FlowLimit] + values[CPAP_SensAwake])>0) {
- html+=" |
";
- html+=QString("%1 |
").arg(tr("Event Breakdown"));
- eventBreakdownPie()->setShowTitle(false);
+ htmlLeftPieChart = getPieChart((values[CPAP_Obstructive] + values[CPAP_Hypopnea] +
+ values[CPAP_ClearAirway] + values[CPAP_Apnea] + values[CPAP_RERA] +
+ values[CPAP_FlowLimit] + values[CPAP_SensAwake]), day);
- int w=155;
- int h=155;
- QPixmap pixmap=eventBreakdownPie()->renderPixmap(w,h,false);
- if (!pixmap.isNull()) {
- QByteArray byteArray;
- QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
- buffer.open(QIODevice::WriteOnly);
- pixmap.save(&buffer, "PNG");
- html += " |
\n";
- } else {
- html += ""+tr("Unable to display Pie Chart on this system")+" |
\n";
- }
- } else if (day->channelHasData(CPAP_Obstructive)
- || day->channelHasData(CPAP_Hypopnea)
- || day->channelHasData(CPAP_ClearAirway)
- || day->channelHasData(CPAP_RERA)
- || day->channelHasData(CPAP_Apnea)
- || day->channelHasData(CPAP_FlowLimit)
- || day->channelHasData(CPAP_SensAwake)
- ) {
- html += " |
\n";
- }
- }
-
- html+="
\n";
- html+="
\n";
-
- } else {
- html+="\n";
+ } else { // No hours
+ htmlLeftNoHours+="\n";
if (!isBrick) {
- html+=" |
\n";
+ htmlLeftNoHours+=" |
\n";
if (day->size()>0) {
- html+=""+tr("Sessions all off!")+" |
";
- html+=" |
";
- html+=""+tr("Sessions exist for this day but are switched off.")+" |
\n";
+ htmlLeftNoHours+=""+tr("Sessions all off!")+" |
";
+ htmlLeftNoHours+=" |
";
+ htmlLeftNoHours+=""+tr("Sessions exist for this day but are switched off.")+" |
\n";
GraphView->setEmptyText(STR_Empty_NoSessions);
} else {
- html+=""+tr("Impossibly short session")+" |
";
- html+=""+tr("Zero hours??")+" |
\n";
+ htmlLeftNoHours+=""+tr("Impossibly short session")+" |
";
+ htmlLeftNoHours+=""+tr("Zero hours??")+" |
\n";
}
} else { // machine is a brick
- html+=""+tr("BRICK :(")+" |
";
- html+=""+tr("Sorry, this machine only provides compliance data.")+" |
\n";
- html+=""+tr("Complain to your Equipment Provider!")+" |
\n";
+ htmlLeftNoHours+=""+tr("BRICK :(")+" |
";
+ htmlLeftNoHours+=""+tr("Sorry, this machine only provides compliance data.")+" |
\n";
+ htmlLeftNoHours+=""+tr("Complain to your Equipment Provider!")+" |
\n";
}
- html+=" |
\n";
- html+="
\n";
+ htmlLeftNoHours+=" |
\n";
+ htmlLeftNoHours+="
\n";
}
} // if (!CPAP)
- else html+=getSleepTime(day);
+ else htmlLeftSleepTime = getSleepTime(day);
if ((cpap && !isBrick && (day->hours()>0)) || oxi || posit) {
- html+=getStatisticsInfo(day);
+ htmlLeftStatistics = getStatisticsInfo(day);
} else {
if (cpap && day->hours(MT_CPAP)<0.0000001) {
} else if (!isBrick) {
- html+="";
- html+=" |
";
- html+=""+tr("\"Nothing's here!\"")+" |
";
- html+=" |
";
- html+=" |
";
- html+=""+tr("No data is available for this day.")+" |
";
- html+=" |
";
- html+="
\n";
+ htmlLeftStatistics ="";
+ htmlLeftStatistics+=" |
";
+ htmlLeftStatistics+=""+tr("\"Nothing's here!\"")+" |
";
+ htmlLeftStatistics+=" |
";
+ htmlLeftStatistics+=" |
";
+ htmlLeftStatistics+=""+tr("No data is available for this day.")+" |
";
+ htmlLeftStatistics+=" |
";
+ htmlLeftStatistics+="
\n";
}
}
if (day) {
- html+=getOximeterInformation(day);
- html+=getMachineSettings(day);
- html+=getSessionInformation(day);
+ htmlLeftOximeter = getOximeterInformation(day);
+ htmlLeftMachineSettings = getMachineSettings(day);
+ htmlLeftSessionInfo= getSessionInformation(day);
}
- html+="";
+ htmlLeftFooter ="