1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Version 3.0.1

This commit is contained in:
David Rosca 2018-05-08 16:17:08 +02:00
parent 5c557c8484
commit 4bf77cd4d1
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8
3 changed files with 23 additions and 2 deletions

View File

@ -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 Version 3.0.0
* released 27 February 2018 * released 27 February 2018
* first Falkon release * first Falkon release

View File

@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.1) cmake_minimum_required(VERSION 3.1)
# Project name and version # 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 # Find ECM, with nice error handling in case of failure
include(FeatureSummary) include(FeatureSummary)

View File

@ -208,7 +208,10 @@ void ProfileManager::updateProfile(const QString &current, const QString &profil
return; return;
} }
// Nothing for now // No change in 3.0
if (prof < Updater::Version("3.0.99")) {
return;
}
} }
void ProfileManager::copyDataToProfile() void ProfileManager::copyDataToProfile()