Skip to content

Commit ea46656

Browse files
authored
Pre-release changes (#455)
* Pre-release changes * Corrected LXQT_MINIMUM_VERSION
1 parent 9a733be commit ea46656

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.8.0 / 2023-11-05
2+
==================
3+
* Updated screenshots and added metadata file.
4+
* Fixed an instance of assigning of -1 to unsigned int.
5+
* Fixed all instances of non-closed file descriptors (to fix an issue that caused a blank list for some users).
6+
17
2.7.0 / 2023-04-15
28
==================
39
* Specify the widget when showing its tooltip (on Wayland).

CMakeLists.txt

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

1111
set(MAJOR_VERSION 2)
12-
set(MINOR_VERSION 7)
12+
set(MINOR_VERSION 8)
1313
set(PATCH_VERSION 0)
1414
set(QPS_VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION})
1515
add_definitions(
@@ -18,7 +18,7 @@ add_definitions(
1818

1919
# Minimum Versions
2020
set(LXQTBT_MINIMUM_VERSION "0.13.0")
21-
set(LXQT_MINIMUM_VERSION "1.2.0")
21+
set(LXQT_MINIMUM_VERSION "1.4.0")
2222
set(QT_MINIMUM_VERSION "5.15.0")
2323

2424
find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED)

0 commit comments

Comments
 (0)