diff --git a/CHANGELOG b/CHANGELOG index a76fdd30..77ce0a0d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +qterminal-2.1.0 / 2024-11-05 +============================= + * Added a hint on drop-down shortcut under Wayland. + * Resolved the conflicts when settings were changed by multiple instances. + * Prevent ordinary main windows under dropdown process. + * User-friendly texts for split menu-items. + * Fixed adding new tab from preset and fixed the disabled state of the context menu's collapse action. + qterminal-2.0.1 / 2024-06-27 ============================= * Single instance for drop-down mode. diff --git a/CMakeLists.txt b/CMakeLists.txt index 92fc2d35..9757466f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ project(qterminal) include(GNUInstallDirs) # qterminal version -set(QTERMINAL_VERSION "2.0.1") +set(QTERMINAL_VERSION "2.1.0") option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF) option(BUILD_TESTS "Builds tests" ON) @@ -21,8 +21,8 @@ endif() # we need qpa/qplatformnativeinterface.h for global shortcut # Minimum Versions -set(LXQTBT_MINIMUM_VERSION "2.0.0") -set(QTERMWIDGET_MINIMUM_VERSION "2.0.1") +set(LXQTBT_MINIMUM_VERSION "2.1.0") +set(QTERMWIDGET_MINIMUM_VERSION "2.1.0") set(QT_MINIMUM_VERSION "6.6.0") set(QT_MAJOR_VERSION "6") set(SHELLQT_MINIMUM_VERSION "6.0.0")