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 #1177

Merged
merged 1 commit into from
Nov 5, 2024
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
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
qterminal-2.1.0 / 2024-11-05
=============================
* Added a hint on drop-down shortcut under Wayland.
* Resolved the conflicts when settings were changed by multiple instances.
* Prevent ordinary main windows under dropdown process.
* User-friendly texts for split menu-items.
* Fixed adding new tab from preset and fixed the disabled state of the context menu's collapse action.

qterminal-2.0.1 / 2024-06-27
=============================
* Single instance for drop-down mode.
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 "2.0.1")
set(QTERMINAL_VERSION "2.1.0")

option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)
option(BUILD_TESTS "Builds tests" ON)
Expand All @@ -21,8 +21,8 @@ endif()
# we need qpa/qplatformnativeinterface.h for global shortcut

# Minimum Versions
set(LXQTBT_MINIMUM_VERSION "2.0.0")
set(QTERMWIDGET_MINIMUM_VERSION "2.0.1")
set(LXQTBT_MINIMUM_VERSION "2.1.0")
set(QTERMWIDGET_MINIMUM_VERSION "2.1.0")
set(QT_MINIMUM_VERSION "6.6.0")
set(QT_MAJOR_VERSION "6")
set(SHELLQT_MINIMUM_VERSION "6.0.0")
Expand Down