Skip to content

Commit 4cf14ef

Browse files
authored
Pre-release changes (#2255)
1 parent 30a1950 commit 4cf14ef

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

CHANGELOG

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
lxqt-panel-2.2.0 / 2025-04-17
2+
==============================
3+
* Handle Wayland screens by using their names, not numbers.
4+
* Added tooltip to plugin-dom.
5+
* Prevent redundant writing to the config file on startup.
6+
* Added an option for the text color of Custom Command.
7+
* Corrected the order of focusing in config dialogs by reordering blocks in ui files.
8+
* Updated manpage.
9+
* Changed "desktop" to "screen" in Panel's config dialog.
10+
* Tidy up some whitespaces in the code.
11+
* Enabled PageDown/PageUp for Fancy Menu.
12+
* Replaced qMin, qMax, qBound, qRound and qAbs with standard functions.
13+
* Cleaned up the config ui files of Main Menu and Fancy Menu.
14+
* Removed menu-cache support.
15+
* Removed debug messages for "UnknownProperty" errors in Status Notifier.
16+
117
lxqt-panel-2.1.4 / 2025-01-11
218
==============================
319
* Fixed Task Manager when a window is shown on all desktops.

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ set(CMAKE_AUTORCC ON)
2828

2929
set(REQUIRED_QT_VERSION "6.6.0")
3030
set(KF6_MINIMUM_VERSION "6.0.0")
31-
set(LXQT_GLOBALKEYS_MINIMUM_VERSION "2.1.0")
32-
set(LXQT_MINIMUM_VERSION "2.1.0")
31+
set(LXQT_GLOBALKEYS_MINIMUM_VERSION "2.2.0")
32+
set(LXQT_MINIMUM_VERSION "2.2.0")
3333

3434
find_package(Qt6DBus ${REQUIRED_QT_VERSION} REQUIRED)
3535
find_package(Qt6LinguistTools ${REQUIRED_QT_VERSION} REQUIRED)
@@ -43,7 +43,7 @@ find_package(lxqt-menu-data ${LXQT_MINIMUM_VERSION} REQUIRED)
4343
find_package(LayerShellQt REQUIRED)
4444

4545
# Patch Version
46-
set(LXQT_PANEL_PATCH_VERSION 4)
46+
set(LXQT_PANEL_PATCH_VERSION 0)
4747
set(LXQT_PANEL_VERSION ${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_PANEL_PATCH_VERSION})
4848
add_definitions("-DLXQT_PANEL_VERSION=\"${LXQT_PANEL_VERSION}\"")
4949

0 commit comments

Comments
 (0)