Skip to content

Commit

Permalink
Pre-release changes (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Nov 5, 2021
1 parent 8192e64 commit d308c15
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ 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(
-DQPS_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}"
)

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

0 comments on commit d308c15

Please sign in to comment.