diff --git a/CHANGELOG b/CHANGELOG index 358889c749d3f030da45dcfc586fb76d507ab2d7..bb34482a6b354633b759ffeb525b6f9ee53d7b4d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +Version 3.1.0 + * released 19 March 2019 + * add support for writing plugins in QML + * add MiddleClickLoader Python plugin + * add page sharing to KDE Frameworks Integration plugin + * add basic support for client certificates (QtWebEngine >= 5.12) + * add support for registering custom protocol handlers (QtWebEngine >= 5.12) + * change search bar appearance to match other KDE apps + * use DBus instead of lockfile/socket to check and communicate with other instances (Linux) + * whitelisted cookies are no longer deleted when deleting all cookies + * Python plugin support is now stable + * close entire tree after middle click on collapsed tabs in VerticalTabs plugin + * fix some compatibility issues with QtWebEngine up to 5.12 + * fix some possible crashes in AdBlock + * fix builds with standalone QtWebEngine releases + Version 3.0.1 * released 8 May 2018 * added profile migration from QupZilla diff --git a/CMakeLists.txt b/CMakeLists.txt index 8410fb570ba3d9a3fa16151ac3a50b177d9243f2..fe9de5a7067deb028bef808cc2fc5e49d6876796 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.99) +project(Falkon VERSION 3.1.0) # 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 8a0ef942d282b3e7543143f09a6607b3fea9c48b..7caa48875c876d34c73112389830e42a16e3254d 100644 --- a/src/lib/app/profilemanager.cpp +++ b/src/lib/app/profilemanager.cpp @@ -212,6 +212,11 @@ void ProfileManager::updateProfile(const QString ¤t, const QString &profil if (prof < Updater::Version(QStringLiteral("3.0.99"))) { return; } + + // No change in 3.1 + if (prof < Updater::Version(QStringLiteral("3.1.99"))) { + return; + } } void ProfileManager::copyDataToProfile()