Skip to content

Commit

Permalink
Merge pull request #243 from lxqt/prerelease
Browse files Browse the repository at this point in the history
Pre-release changes
  • Loading branch information
tsujan authored Apr 23, 2020
2 parents d70d599 + 6b20dd9 commit aa00c77
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
======================

Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ 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(
-DQPS_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}"
)

# 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)
Expand Down

0 comments on commit aa00c77

Please sign in to comment.