Version 3.0.0

remotes/origin/Falkon/3.0 v3.0.0
David Rosca 8 years ago
parent 8ab16ea31c
commit 0118c0cb96
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8
  1. 7
      CHANGELOG
  2. 2
      CMakeLists.txt
  3. 2
      src/lib/CMakeLists.txt
  4. 7
      src/lib/app/profilemanager.cpp

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

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

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

@ -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;
}

Loading…
Cancel
Save