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
0118c0cb
Unverified
Commit
0118c0cb
authored
Feb 27, 2018
by
David Rosca
Browse files
Version 3.0.0
parent
8ab16ea3
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
0118c0cb
Version 3.0.0
* released 27 February 2018
* first Falkon release
* added experimental support for Python extensions
--------------------------------------------------------------------------------
Version 2.1.2
* released 15 March 2017
* updated translations
...
...
CMakeLists.txt
View file @
0118c0cb
...
...
@@ -2,7 +2,7 @@
cmake_minimum_required
(
VERSION 3.1
)
# Project name and version
project
(
Falkon VERSION
2.1.99
)
project
(
Falkon VERSION
3.0.0
)
# Find ECM, with nice error handling in case of failure
include
(
FeatureSummary
)
...
...
src/lib/CMakeLists.txt
View file @
0118c0cb
...
...
@@ -303,7 +303,7 @@ if (UNIX AND NOT APPLE)
endif
()
target_link_libraries
(
FalkonPrivate crypto
)
set_target_properties
(
FalkonPrivate PROPERTIES VERSION
${
PROJECT_VERSION
}
SOVERSION
"
2
"
)
set_target_properties
(
FalkonPrivate PROPERTIES VERSION
${
PROJECT_VERSION
}
SOVERSION
"
3
"
)
install
(
TARGETS FalkonPrivate
${
KDE_INSTALL_TARGETS_DEFAULT_ARGS
}
LIBRARY NAMELINK_SKIP
)
endif
()
...
...
src/lib/app/profilemanager.cpp
View file @
0118c0cb
...
...
@@ -194,12 +194,7 @@ void ProfileManager::updateProfile(const QString ¤t, const QString &profil
}
// No change in 2.0
if
(
prof
<
Updater
::
Version
(
"2.0.99"
))
{
return
;
}
// No change in 2.1
if
(
prof
<
Updater
::
Version
(
"2.1.99"
))
{
if
(
prof
<
Updater
::
Version
(
"2.9.99"
))
{
return
;
}
...
...
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