mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-07 03:30:44 +00:00
Preliminary release notes for OSCAR 1.0.2 and version id changes to beta-1.
This commit is contained in:
parent
90b6db3b3f
commit
3ada6741d9
@ -6,6 +6,20 @@
|
|||||||
Which was written and copyright 2011-2018 © Mark Watkins
|
Which was written and copyright 2011-2018 © Mark Watkins
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>Changes and fixes in OSCAR v1.0.2-beta-1</b>
|
||||||
|
<ul>
|
||||||
|
<li>Portions of OSCAR are © 2019 by The OSCAR Team</li>
|
||||||
|
<li>Offer migration to non-default directory on first use</li>
|
||||||
|
<li>Add "Use Legacy Graphics.reg" to ask OSCAR to use simpler graphics for older systems</li>
|
||||||
|
<li>Change Preferences measurement units choice to Metric or English</li>
|
||||||
|
<li>Improve display of cmH2O numbers</li>
|
||||||
|
<li>Re-organize build instructions and other cleanup</li>
|
||||||
|
<li>Show graphics engine in title bar correctly</li>
|
||||||
|
<li>Adjust size of Preferences dialog to fit smaller screens</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<b>Changes and fixes in OSCAR v1.0.1-r-1</b>
|
<b>Changes and fixes in OSCAR v1.0.1-r-1</b>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
|
|
||||||
const int major_version = 1; // incompatible API changes
|
const int major_version = 1; // incompatible API changes
|
||||||
const int minor_version = 0; // new features that don't break things
|
const int minor_version = 0; // new features that don't break things
|
||||||
const int revision_number = 1; // bugfixes, revisions
|
const int revision_number = 2; // bugfixes, revisions
|
||||||
const QString ReleaseStatus = "r"; // testing/nightly/unstable, beta/untamed, rc/almost, r/stable
|
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 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);
|
const QString ShortVersionString = QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number);
|
||||||
|
Loading…
Reference in New Issue
Block a user