diff --git a/CHANGELOG b/CHANGELOG index 498f27b53..358889c74 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +Version 3.0.1 + * released 8 May 2018 + * added profile migration from QupZilla + * fix incorrectly completing form data on some sites (BUG 391327) + * fix showing incorrect state of back and forward buttons (BUG 391331) + * fix loading urls containing %20 from location bar (BUG 392445) + * fix save page action for downloading text files (BUG 391300) + * fix download manager trying to closing not restored tabs (BUG 392565) + * fix updating location bar site icon after using paste and go action (BUG 392747) + * fix various issues with QtWebEngine 5.11 (BUG 392885, 393398) + * fix speed dial sometimes loading with no pages (BUG 391875) + * fix leaving html fullscreen after closing tab (BUG 393797) + * fix saving speed dial settings when there are no configured pages + * fix restoring nested crashed sessions + * fix setting minimum height of bookmarks toolbar + * VerticalTabs: fix preserving expanded state of times inside collapsed parent (BUG 393567) + * VerticalTabs: don't force open sidebar when opening new window (BUG 393629) + Version 3.0.0 * released 27 February 2018 * first Falkon release diff --git a/CMakeLists.txt b/CMakeLists.txt index f59b9d616..1e3125ee4 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.1) # 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 49c15886d..4c86c6162 100644 --- a/src/lib/app/profilemanager.cpp +++ b/src/lib/app/profilemanager.cpp @@ -208,7 +208,10 @@ void ProfileManager::updateProfile(const QString ¤t, const QString &profil return; } - // Nothing for now + // No change in 3.0 + if (prof < Updater::Version("3.0.99")) { + return; + } } void ProfileManager::copyDataToProfile()