From a0d0ebac0f97bc155578e7cacccdfcdcce43b1fa Mon Sep 17 00:00:00 2001 From: tsujan Date: Sat, 16 Apr 2022 18:09:02 +0430 Subject: [PATCH] Prerelease changes (#947) --- CHANGELOG | 21 +++++++++++++++++++++ CMakeLists.txt | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4fc39a2d..3358379e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,24 @@ +qterminal-1.1.0 / 2022-04-15 +============================= + * Updated README.md. + * Fixed max. value of drop-down width/height spin-box. + * Use explicit QFlags default constructor instead of nullptr. + * Changed the relation between unlimited history and history size (selecting unlimited history now disables the history size spinbox). + * Activate bookmarks according to platform click behavior. + * Enabled bookmark filtering. + * Cleaned up bookmarks tree. + * No hidden parent for dropdown window (fixes several old issues). + * Fixed closing of last tab with prompt. + * Never show close prompt when explicitly ending session from terminal. + * Don't toggle drop-down terminal if it has modal dialog. + * Added bookmarks examples. + * Added a shortcut entry for drop-down shortcut. + * Fixed a minor problem in full-screening in drop-down mode. + * Improved the Bookmarks page of QTerminal's settings dialog. + * Fixed focus change on showing/hiding bookmarks dock. + * Fixed updating of shortcuts on tab switching/removal/creation. + * Fixed right clicking of an empty area of tabbar. + qterminal-1.0.0 / 2021-11-04 ============================= * Bumped minimum required Qt version to 5.15. diff --git a/CMakeLists.txt b/CMakeLists.txt index ab3d55ce..1f6fd520 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ project(qterminal) include(GNUInstallDirs) # qterminal version -set(QTERMINAL_VERSION "1.0.0") +set(QTERMINAL_VERSION "1.1.0") option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF) @@ -20,8 +20,8 @@ endif() # we need qpa/qplatformnativeinterface.h for global shortcut # Minimum Versions -set(LXQTBT_MINIMUM_VERSION "0.10.0") -set(QTERMWIDGET_MINIMUM_VERSION "1.0.0") +set(LXQTBT_MINIMUM_VERSION "0.11.0") +set(QTERMWIDGET_MINIMUM_VERSION "1.1.0") set(QT_MINIMUM_VERSION "5.15.0") find_package(Qt5Gui ${QT_MINIMUM_VERSION} REQUIRED)