summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-11-02 05:12:10 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-11-02 05:12:10 -0700
commit89851d1071745e312aed77e8e91a338a3c29a388 (patch)
tree43d6bbb98e72bcc8c12a01f481f2d2f230b5ca66
parentc25ca184ec4c60f93bdec98c0f6c1b3113cf1f8d (diff)
downloadsubsurface-89851d1071745e312aed77e8e91a338a3c29a388.tar.gz
Match ReleaseNotes and version numbering with reality
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--ReleaseNotes/ReleaseNotes.txt6
-rw-r--r--desktop-widgets/about.cpp6
2 files changed, 7 insertions, 5 deletions
diff --git a/ReleaseNotes/ReleaseNotes.txt b/ReleaseNotes/ReleaseNotes.txt
index e875b4fc4..393323514 100644
--- a/ReleaseNotes/ReleaseNotes.txt
+++ b/ReleaseNotes/ReleaseNotes.txt
@@ -1,6 +1,6 @@
// _Subsurface_ 4.6 Beta 1 Release Notes
-_Subsurface_ 4.6 Beta 1 - September 2016
+_Subsurface_ 4.6 Beta 1 - October 2016
----------------------------------------
Some of the changes since _Subsurface_ 4.5.6
@@ -18,7 +18,9 @@ Some of the changes since _Subsurface_ 4.5.6
- SmartTrack .slg import
- Fixes to Divelogs.de import and export
- Fixes to UDDF exporter
-- Small fix to Uemis downloader for yet another corner case
+- Small fix to Uemis downloader for yet another corner case (Uemis
+ downloader is known to be broken for some users - it is no longer
+ actively maintained)
- Improved handling of dive computer events (grouping them into info,
warning and alert - best supported on Suunto EON Steel)
- Add heatmap visualization of deco tissue loading
diff --git a/desktop-widgets/about.cpp b/desktop-widgets/about.cpp
index 907a6b8f2..36a3c91a4 100644
--- a/desktop-widgets/about.cpp
+++ b/desktop-widgets/about.cpp
@@ -10,9 +10,9 @@ SubsurfaceAbout::SubsurfaceAbout(QWidget *parent, Qt::WindowFlags f) : QDialog(p
setWindowModality(Qt::ApplicationModal);
QString versionString(subsurface_git_version());
- QStringList readableVersions = QStringList() << "4.5.95" << "4.6 Beta 1" <<
- "4.5.96" << "4.6 Beta 2" <<
- "4.5.97" << "4.6 Beta 3";
+ QStringList readableVersions = QStringList() << "4.5.95" << "4.6 Beta 0" <<
+ "4.5.96" << "4.6 Beta 1" <<
+ "4.5.97" << "4.6 Beta 2";
if (readableVersions.contains(versionString))
versionString = readableVersions[readableVersions.indexOf(versionString) + 1];