diff --git a/CHANGELOG b/CHANGELOG index bfea04d..dda16f5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,30 @@ +qps-2.1.0 / 2020-04-23 +====================== + * Fixed IO_R column and IO_W column. + * Fixed sorting in SWAP column. + * Used radio buttons in Field menu. + * Fixed I/O graph. + * Avoided overflow. + * Removed CMake artifacts. + * Removed unused, nontrivial variables. + * Silenced unused parameter warnings. + * Explicitly ignore return values when needed. + * Drop C deprecated headers. + * Use nullptr. + * Use SingleApplication from LXQt. + * Removed screenshot capability. + * Dropped pre-compiled headers (PCH). + * Reorganized Svec class. + * Dropped C deprecated headers. + * Got rid of `proc_common.cpp`. + * Removed GTK conditional code. + * Removed unused platform files. + * Ported towards C++11 override. + * Fix sign compare warnings. + * Stopped using deprecated QString method `printf()`. + * Fix a printf() format warning. + * Avoid temporary heap allocations. + qps-2.0.0 / 2019-10-08 ====================== diff --git a/CMakeLists.txt b/CMakeLists.txt index 9477bb3..8859848 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 0) +set(MINOR_VERSION 1) set(PATCH_VERSION 0) set(QPS_VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}) add_definitions( @@ -17,9 +17,9 @@ add_definitions( ) # Minimum Versions -set(LXQTBT_MINIMUM_VERSION "0.6.0") -set(LXQT_MINIMUM_VERSION "0.14.1") -set(QT_MINIMUM_VERSION "5.7.1") +set(LXQTBT_MINIMUM_VERSION "0.7.0") +set(LXQT_MINIMUM_VERSION "0.15.0") +set(QT_MINIMUM_VERSION "5.10.0") find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED) find_package(Qt5 ${QT_MINIMUM_VERSION} REQUIRED COMPONENTS Widgets X11Extras DBus LinguistTools)