Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pre-release changes #1080

Merged
merged 1 commit into from
Nov 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 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.3.0")
set(QTERMINAL_VERSION "1.4.0")

option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
option(BUILD_TESTS "Builds tests" ON)
Expand All @@ -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)
Expand Down
Loading