Skip to content

Commit

Permalink
Merge pull request #220 from lxqt/prerelease
Browse files Browse the repository at this point in the history
Pre-release changes
  • Loading branch information
tsujan authored Aug 16, 2023
2 parents f7b022a + acbab68 commit 5d5dbd6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
obconf-qt-0.16.3 / 2023-08-16
=============================
* Added missing copyright info.
* Bumped the minimum required version of cmake to 3.5.0 (to silence a compilation warning).
* Translation updates.

obconf-qt-0.16.2 / 2022-03-11
=============================
* Fixed the option for centering window on opening.
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
cmake_minimum_required(VERSION 3.5.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)
Expand All @@ -18,7 +18,7 @@ set(QT_MINIMUM_VERSION "5.12.0")

set(OBCONFQT_MAJOR_VERSION 0)
set(OBCONFQT_MINOR_VERSION 16)
set(OBCONFQT_PATCH_VERSION 2)
set(OBCONFQT_PATCH_VERSION 3)
set(OBCONFQT_VERSION ${OBCONFQT_MAJOR_VERSION}.${OBCONFQT_MINOR_VERSION}.${OBCONFQT_PATCH_VERSION})
add_definitions("-DOBCONFQT_VERSION=\"${OBCONFQT_VERSION}\"")

Expand Down

0 comments on commit 5d5dbd6

Please sign in to comment.