Skip to content

Commit d308c15

Browse files
authored
Pre-release changes (#339)
1 parent 8192e64 commit d308c15

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGELOG

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2.4.0 / 2021-11-04
2+
==================
3+
* Bumped minimum required Qt version to 5.15.
4+
* Replaced deprecated methods.
5+
* Silenced some compilation warnings.
6+
* Got rid of sched_getaffinity hack.
7+
* Ensure that only one sort indicator exists.
8+
* Removed a redundant function.
9+
* Enhanced filtering.
10+
111
2.3.0 / 2021-04-15
212
==================
313
* Fixed a crash when Qps is started minimized to tray.

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ Project(qps)
99
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
1010

1111
set(MAJOR_VERSION 2)
12-
set(MINOR_VERSION 3)
12+
set(MINOR_VERSION 4)
1313
set(PATCH_VERSION 0)
1414
set(QPS_VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION})
1515
add_definitions(
1616
-DQPS_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}"
1717
)
1818

1919
# Minimum Versions
20-
set(LXQTBT_MINIMUM_VERSION "0.9.0")
21-
set(LXQT_MINIMUM_VERSION "0.17.0")
20+
set(LXQTBT_MINIMUM_VERSION "0.10.0")
21+
set(LXQT_MINIMUM_VERSION "1.0.0")
2222
set(QT_MINIMUM_VERSION "5.15.0")
2323

2424
find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED)

0 commit comments

Comments
 (0)