Skip to content

Commit

Permalink
Pre-release changes (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Nov 5, 2021
1 parent ba56c3c commit 1ad11b8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
lxqt-globalkeys-1.0.0 / 2021-11-04
===================================
* Updated AUTHORS.
* Bumped minimum required Qt version to 5.15.
* Added shortcut filtering.
* Code cleanup.

lxqt-globalkeys-0.17.0 / 2021-04-15
===================================
* Completely moved to Qt5 signal/slot syntax.
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)

set(KF5_MINIMUM_VERSION "5.36.0")
set(LXQT_MINIMUM_VERSION "0.17.0")
set(LXQT_MINIMUM_VERSION "1.0.0")
set(QT_MINIMUM_VERSION "5.15.0")

set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand All @@ -27,8 +27,8 @@ find_package(KF5WindowSystem ${KF5_MINIMUM_VERSION} REQUIRED)
find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED)

# Version
set(LXQT_GLOBALKEYS_MAJOR_VERSION 0)
set(LXQT_GLOBALKEYS_MINOR_VERSION 17)
set(LXQT_GLOBALKEYS_MAJOR_VERSION 1)
set(LXQT_GLOBALKEYS_MINOR_VERSION 0)
set(LXQT_GLOBALKEYS_PATCH_VERSION 0)
set(LXQT_GLOBALKEYS_VERSION ${LXQT_GLOBALKEYS_MAJOR_VERSION}.${LXQT_GLOBALKEYS_MINOR_VERSION}.${LXQT_GLOBALKEYS_PATCH_VERSION})
add_definitions("-DLXQT_GLOBALKEYS_VERSION=\"${LXQT_GLOBALKEYS_VERSION}\"")
Expand Down

0 comments on commit 1ad11b8

Please sign in to comment.