diff --git a/CHANGELOG b/CHANGELOG index d4088d5f..c2537683 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +qterminal-1.3.0 / 2023-04-15 +============================= + * Specified the parent of the main context menu for correct positioning under Wayland. + * Improve UX by opening new terminals in current directory by default. + * Fixed a crash in the dropdown mode under Wayland. + * Corrected typos. + * Corrected the license in the meta-info. + qterminal-1.2.0 / 2022-11-05 ============================= * Add CI using GitHub Actions. diff --git a/CMakeLists.txt b/CMakeLists.txt index 96ea7431..4e3e1e63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ project(qterminal) include(GNUInstallDirs) # qterminal version -set(QTERMINAL_VERSION "1.2.0") +set(QTERMINAL_VERSION "1.3.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 "0.12.0") -set(QTERMWIDGET_MINIMUM_VERSION "1.2.0") +set(LXQTBT_MINIMUM_VERSION "0.13.0") +set(QTERMWIDGET_MINIMUM_VERSION "1.3.0") set(QT_MINIMUM_VERSION "5.15.0") find_package(Qt5Gui ${QT_MINIMUM_VERSION} REQUIRED)