diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-05 12:53:38 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-05 17:00:14 -0800 |
commit | d42b7f55c4e0aea004a2ba7ba135c173f3615290 (patch) | |
tree | 0f3522fe6d1ac96df74055619245787a681d3237 /qt-mobile | |
parent | 5aa94578f79d4364cd9007fafc7370bfb5a89aff (diff) | |
download | subsurface-d42b7f55c4e0aea004a2ba7ba135c173f3615290.tar.gz |
Introduce separate version number for Subsurface-mobile
This is hard coded in version.cmake for now. The intent is to go to 1.0 in
the first release version and to increment from there whenever we create
an update.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qmlmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp index 94344f9f3..6851ec079 100644 --- a/qt-mobile/qmlmanager.cpp +++ b/qt-mobile/qmlmanager.cpp @@ -936,7 +936,7 @@ QString QMLManager::getDate(const QString& diveId) QString QMLManager::getVersion() const { - QRegExp versionRe(".*:([\\.,\\d]+).*"); + QRegExp versionRe(".*:([()\\.,\\d]+).*"); if (!versionRe.exactMatch(getUserAgent())) return QString(); |