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

Version 3.0.0

This commit is contained in:
David Rosca 2018-02-27 14:42:16 +01:00
parent 8ab16ea31c
commit 0118c0cb96
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8
4 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,10 @@
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

View File

@ -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)

View File

@ -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()

View File

@ -194,12 +194,7 @@ void ProfileManager::updateProfile(const QString &current, 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;
}