Skip to content

Commit

Permalink
Pre-release changes (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Nov 5, 2021
1 parent 652b20b commit cfb8348
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
qtermwidget-1.0.0 / 2021-11-04
===============================
* Bumped minimum required Qt version to 5.15.
* Fixed crash under (Plasma) Wayland on opening tab and splitting.
* Use "empty()" to check for container emptiness.
* Made some member functions const.
* Quote drag-and-drop file names.
* Backported CNL and CPL support from Konsole.
* Use QRandomGenerator instead of qrand().
* Silenced some compilation warnings.
* Basic EditorConfig definition.

qtermwidget-0.17.0 / 2021-04-15
===============================
* Drop support for KDE3 color scheme formats.
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ option(USE_UTF8PROC "Use libutf8proc for better Unicode support. Default OFF" OF


# just change version for releases
set(QTERMWIDGET_VERSION_MAJOR "0")
set(QTERMWIDGET_VERSION_MINOR "17")
set(QTERMWIDGET_VERSION_MAJOR "1")
set(QTERMWIDGET_VERSION_MINOR "0")
set(QTERMWIDGET_VERSION_PATCH "0")

set(QTERMWIDGET_VERSION "${QTERMWIDGET_VERSION_MAJOR}.${QTERMWIDGET_VERSION_MINOR}.${QTERMWIDGET_VERSION_PATCH}")
Expand All @@ -32,7 +32,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)

# Minimum Versions
set(QT_MINIMUM_VERSION "5.15.0")
set(LXQTBT_MINIMUM_VERSION "0.9.0")
set(LXQTBT_MINIMUM_VERSION "0.10.0")

find_package(Qt5Widgets "${QT_MINIMUM_VERSION}" REQUIRED)
find_package(Qt5LinguistTools "${QT_MINIMUM_VERSION}" REQUIRED)
Expand Down

0 comments on commit cfb8348

Please sign in to comment.