diff --git a/CHANGELOG b/CHANGELOG index c858b114..4fc39a2d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +qterminal-1.0.0 / 2021-11-04 +============================= + * Bumped minimum required Qt version to 5.15. + * Respect preset splitting on opening new window and double clicking tab-bar. + * Trim shell strings. + * Added an option for keeping drop-down window open. + * Don't try to move window under Wayland (fixes menu positions). + qterminal-0.17.0 / 2021-04-15 ============================= * Some code cleanup and modernization. diff --git a/CMakeLists.txt b/CMakeLists.txt index 7cb17920..d0336efe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ project(qterminal) include(GNUInstallDirs) # qterminal version -set(QTERMINAL_VERSION "0.17.0") +set(QTERMINAL_VERSION "1.0.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.9.0") -set(QTERMWIDGET_MINIMUM_VERSION "0.17.0") +set(LXQTBT_MINIMUM_VERSION "0.10.0") +set(QTERMWIDGET_MINIMUM_VERSION "1.0.0") set(QT_MINIMUM_VERSION "5.15.0") find_package(Qt5Gui ${QT_MINIMUM_VERSION} REQUIRED)