diff --git a/CHANGELOG b/CHANGELOG index 0bed965..1b3b553 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +lxqt-qtplugin-2.0.0 / 2024-04-17 +================================= + * Ported to Qt6. + * Check the existence of qApp. + * Set mouse cursor theme and size. + * Set hover effect. + * Added link to libdbusmenu-lxqt in `README.md`. + lxqt-qtplugin-1.4.0 / 2023-11-05 ================================= * Just corrected a case of code readability and bumped the version. diff --git a/CMakeLists.txt b/CMakeLists.txt index 46cb87f..61960d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.18.0 FATAL_ERROR) # CMP0000: Call the cmake_minimum_required() command at the beginning of the top-level # CMakeLists.txt file even before calling the project() command. # The cmake_minimum_required(VERSION) command implicitly invokes the cmake_policy(VERSION) @@ -15,7 +15,7 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON) # Minimum Versions set(LXQTBT_MINIMUM_VERSION "2.0.0") set(QT_MINIMUM_VERSION "6.6.0") -set(QTXDG_MINIMUM_VERSION "3.12.0") +set(QTXDG_MINIMUM_VERSION "4.0.0") set(FMQT_MINIMUM_VERSION "2.0.0") find_package(Qt6DBus ${QT_MINIMUM_VERSION} REQUIRED)