diff --git a/CHANGELOG b/CHANGELOG index 9f4146d..f1f35b7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +2.8.0 / 2023-11-05 +================== + * Updated screenshots and added metadata file. + * Fixed an instance of assigning of -1 to unsigned int. + * Fixed all instances of non-closed file descriptors (to fix an issue that caused a blank list for some users). + 2.7.0 / 2023-04-15 ================== * Specify the widget when showing its tooltip (on Wayland). diff --git a/CMakeLists.txt b/CMakeLists.txt index 487a613..4f6cf7e 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 7) +set(MINOR_VERSION 8) set(PATCH_VERSION 0) set(QPS_VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}) add_definitions( @@ -18,7 +18,7 @@ add_definitions( # Minimum Versions set(LXQTBT_MINIMUM_VERSION "0.13.0") -set(LXQT_MINIMUM_VERSION "1.2.0") +set(LXQT_MINIMUM_VERSION "1.4.0") set(QT_MINIMUM_VERSION "5.15.0") find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED)