From a796842dffaa6d32a6ed7432e387b578f6401f89 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Wed, 28 Feb 2018 10:38:59 +0100 Subject: [PATCH] Bump version to 3.0.99 --- CMakeLists.txt | 2 +- src/lib/app/profilemanager.cpp | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d13522d8d..93c18c0e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1) # Project name and version -project(Falkon VERSION 3.0.0) +project(Falkon VERSION 3.0.99) # Find ECM, with nice error handling in case of failure include(FeatureSummary) diff --git a/src/lib/app/profilemanager.cpp b/src/lib/app/profilemanager.cpp index 94b9b42be..bc1cb0b81 100644 --- a/src/lib/app/profilemanager.cpp +++ b/src/lib/app/profilemanager.cpp @@ -198,6 +198,11 @@ void ProfileManager::updateProfile(const QString ¤t, const QString &profil return; } + // No change in 3.1 + if (prof < Updater::Version("3.0.99")) { + return; + } + // Nothing for now }