Skip to content

Commit

Permalink
Prerelease changes (#947)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Apr 16, 2022
1 parent 6223a68 commit a0d0eba
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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)
Expand Down

0 comments on commit a0d0eba

Please sign in to comment.