Skip to content

Commit 58981da

Browse files
authored
Pre-release changes (#522)
1 parent 96a3d5c commit 58981da

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGELOG

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
1-
qtermwidget-1.4.0 / unreleased
1+
qtermwidget-1.4.0 / 2023-11-05
22
===============================
3-
* TERM env variable set to xterm-256color when not set with QTermWidget::setEnvironment().
3+
* TERM env variable is set to xterm-256color when not set with QTermWidget::setEnvironment().
4+
* Add getForegroundProcessId() function to QTermWidget class (to allow terminal apps to check if the user has started a process in the shell and alert them).
5+
* Ported away from deprecated Qt::MidButton.
6+
* Added missing initialization of some variables.
7+
* Fixed mixing of bool and int.
8+
* Prefer ranged loop for over `while`.
9+
* Backported a kcoreaddons commit (1fed7e861f73a6ecbed79be4625afa52a5eaaf3b).
10+
* Replaced old-style cast with static_cast.
11+
* Properly initialize KProcess members.
12+
* Use Q_DECLARE_PRIVATE_D instead of custom Q_DECLARE_PRIVATE_MI (backport of kpty commit 3ef0d7d9ed980513fb36265e4d73fd79c07d5131).
13+
* Use class, not struct, for KPtyDevicePrivate for consistency (backport of kpty commit ad5cf9d348c13d3d27591a66fab9ccf20603daf8).
14+
* Use std::unique_ptr to manage the pimpl object.
15+
* Backported kpty commits 3526c09cae186bbba32bf3841cab5aa9d24d98b5, ae866fa6063c8d09ff354dc16f3fc8240676c64d and 982bb9e9fc715faae9ba440593ed0e74b8884888.
16+
* Use pointer to member function connect/disconnect signal/slot syntax.
17+
* Added `const` to some methods.
18+
* fixed deprecation warnings.
19+
* Mark assignment operator as deleted due to existence of copy constructor.
20+
* Removed useless `sizeof()` from `qtermwidget/BlockArray.h`.
21+
* Added Falcon colorscheme.
22+
* Cleaner builds.
423

524
qtermwidget-1.3.0 / 2023-04-15
625
===============================

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ option(USE_UTF8PROC "Use libutf8proc for better Unicode support. Default OFF" OF
2222
# just change version for releases
2323
# keep this in sync with the version in pyqt/pyproject.toml
2424
set(QTERMWIDGET_VERSION_MAJOR "1")
25-
set(QTERMWIDGET_VERSION_MINOR "3")
25+
set(QTERMWIDGET_VERSION_MINOR "4")
2626
set(QTERMWIDGET_VERSION_PATCH "0")
2727

2828
set(QTERMWIDGET_VERSION "${QTERMWIDGET_VERSION_MAJOR}.${QTERMWIDGET_VERSION_MINOR}.${QTERMWIDGET_VERSION_PATCH}")

lib/qtermwidget.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name" : "QTermWidget",
3-
"Version" : "1.3.0",
3+
"Version" : "1.4.0",
44
"Vendor" : "LXQt",
55
"Copyright" : "(C) 2022 LXQt",
66
"Url" : "https://github.com/lxqt/qtermwidget",

pyqt/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ build-backend = "sipbuild.api"
66

77
[tool.sip.metadata]
88
name = "QTermWidget"
9-
version = "1.3.0"
9+
version = "1.4.0"
1010
requires-dist = ["PyQt5"]

0 commit comments

Comments
 (0)