From 9d25359138a6883783acfe7668468349221b1d93 Mon Sep 17 00:00:00 2001
From: Seeker4
Date: Thu, 18 Jul 2019 22:37:53 -0700
Subject: [PATCH] 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);