diff --git a/CHANGELOG b/CHANGELOG index c2537683..0f2dfed8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +qterminal-1.4.0 / 2023-11-05 +============================= + * Handled bell (BEL, '\a') via libcanberra, and added an "Audible bell" option. + * Use `qWarning().noquote()`. + * Ported away from deprecated Qt::MidButton. + * Let the latest QTermWidget library set TERM. + * Corrected tab order in settings dialog. + * Removed an unused non POD variable. + * Supported Putty-style mouse button swap. + * Avoided a case of null pointer dereference. + qterminal-1.3.0 / 2023-04-15 ============================= * Specified the parent of the main context menu for correct positioning under Wayland. diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ff952df..e0ca0258 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ project(qterminal) include(GNUInstallDirs) # qterminal version -set(QTERMINAL_VERSION "1.3.0") +set(QTERMINAL_VERSION "1.4.0") option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF) option(BUILD_TESTS "Builds tests" ON) @@ -22,7 +22,7 @@ endif() # Minimum Versions set(LXQTBT_MINIMUM_VERSION "0.13.0") -set(QTERMWIDGET_MINIMUM_VERSION "1.3.0") +set(QTERMWIDGET_MINIMUM_VERSION "1.4.0") set(QT_MINIMUM_VERSION "5.15.0") find_package(Qt5Gui ${QT_MINIMUM_VERSION} REQUIRED)