diff --git a/CHANGELOG b/CHANGELOG index 1bd49d4..935beae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +2.4.0 / 2021-11-04 +================== + * Bumped minimum required Qt version to 5.15. + * Replaced deprecated methods. + * Silenced some compilation warnings. + * Got rid of sched_getaffinity hack. + * Ensure that only one sort indicator exists. + * Removed a redundant function. + * Enhanced filtering. + 2.3.0 / 2021-04-15 ================== * Fixed a crash when Qps is started minimized to tray. diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d8f4c0..13400d3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ Project(qps) option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF) set(MAJOR_VERSION 2) -set(MINOR_VERSION 3) +set(MINOR_VERSION 4) set(PATCH_VERSION 0) set(QPS_VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}) add_definitions( @@ -17,8 +17,8 @@ add_definitions( ) # Minimum Versions -set(LXQTBT_MINIMUM_VERSION "0.9.0") -set(LXQT_MINIMUM_VERSION "0.17.0") +set(LXQTBT_MINIMUM_VERSION "0.10.0") +set(LXQT_MINIMUM_VERSION "1.0.0") set(QT_MINIMUM_VERSION "5.15.0") find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED)