Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
Falkon
Commits
2853a1ee
Unverified
Commit
2853a1ee
authored
Mar 19, 2019
by
David Rosca
Browse files
Version 3.1.0
parent
be9b7dda
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
2853a1ee
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
...
...
CMakeLists.txt
View file @
2853a1ee
...
...
@@ -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
)
...
...
src/lib/app/profilemanager.cpp
View file @
2853a1ee
...
...
@@ -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
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment