From 3ada6741d9d0cf91f216ae368d0bcc79224cc851 Mon Sep 17 00:00:00 2001
From: Seeker4
Date: Fri, 3 May 2019 19:12:07 -0700
Subject: [PATCH] Preliminary release notes for OSCAR 1.0.2 and version id
changes to beta-1.
---
oscar/docs/release_notes.html | 14 ++++++++++++++
oscar/version.h | 4 ++--
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/oscar/docs/release_notes.html b/oscar/docs/release_notes.html
index e94138bc..7e51ed2e 100644
--- a/oscar/docs/release_notes.html
+++ b/oscar/docs/release_notes.html
@@ -6,6 +6,20 @@
Which was written and copyright 2011-2018 © Mark Watkins
+
+Changes and fixes in OSCAR v1.0.2-beta-1
+
+- 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
+
+
+
Changes and fixes in OSCAR v1.0.1-r-1
diff --git a/oscar/version.h b/oscar/version.h
index 1deee65f..943c4110 100644
--- a/oscar/version.h
+++ b/oscar/version.h
@@ -14,8 +14,8 @@
const int major_version = 1; // incompatible API changes
const int minor_version = 0; // new features that don't break things
-const int revision_number = 1; // bugfixes, revisions
-const QString ReleaseStatus = "r"; // testing/nightly/unstable, beta/untamed, rc/almost, r/stable
+const int revision_number = 2; // bugfixes, revisions
+const QString ReleaseStatus = "beta"; // 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);