diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-09-03 07:40:14 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-03 07:40:14 -0700 |
commit | 1f81186dde1b17fb4904c4ca05967b8e2b817b4b (patch) | |
tree | 5b41913586227562a678277d5066f1ee3690f200 /qt-ui/about.cpp | |
parent | a5288fb60c55261de47c6c07e51b73d8b6a35f1f (diff) | |
download | subsurface-1f81186dde1b17fb4904c4ca05967b8e2b817b4b.tar.gz |
Re-assign numbers for beta versionsv4.4.96
After an incorrect upload I can no longer fix the source tar on launchpad.
Oh well, so now Beta 1 is 4.4.96. No big deal.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/about.cpp')
-rw-r--r-- | qt-ui/about.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/about.cpp b/qt-ui/about.cpp index 7d82808e3..e0df55980 100644 --- a/qt-ui/about.cpp +++ b/qt-ui/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.4.95" << "4.5 Beta 1" << - "4.4.96" << "4.5 Beta 2" << - "4.4.97" << "4.5 Beta 3"; + QStringList readableVersions = QStringList() << "4.4.96" << "4.5 Beta 1" << + "4.4.97" << "4.5 Beta 2" << + "4.4.98" << "4.5 Beta 3"; if (readableVersions.contains(versionString)) versionString = readableVersions[readableVersions.indexOf(versionString) + 1]; |