From 999dc3f968281c155fea5e4e71dacd7882f1745b Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Wed, 13 Mar 2024 13:29:43 +0900 Subject: [PATCH 1/2] Update NEWS for v0.9.25.1 --- NEWS.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/NEWS.md b/NEWS.md index ae1adb8a9..8a107585d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,19 @@ +# Release notes for xrdp v0.9.25.1 (2024/03/13) + +This release fixes a bug that occurred in v0.9.25 where scrolling did not work in the Xvnc backend. + +Thanks to @bsmojver reporting the issue and testing! + +## General announcements +_This is the last v0.9.x version which is released regularly. v0.9.x will be maintained for a while but less actively. New releases will happen only when severe security vulnerabilities or critical bugs are found._ + +We have created a fund on [Open Collective](https://opencollective.com/xrdp-project). Support us if you like xrdp! Direct donations to each developer via GitHub Sponsors are also welcomed. + +## Bug fixes +* Mouse wheel scrolling in Xvnc session no longer works in 0.9.25 (#2993 #2994) + +----------------------- + # Release notes for xrdp v0.9.25 (2024/03/11) * Running xrdp and xrdp-sesman on separate hosts is still supported by this release, but is now deprecated. This is not secure. A future v1.0 release will replace the TCP socket used between these processes with a Unix Domain Socket, and then cross-host running will not be possible. From 41c79932c8743aa0240a04dff6956a2af907766f Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Wed, 13 Mar 2024 13:30:06 +0900 Subject: [PATCH 2/2] Bump version to v0.9.25.1 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0991203f3..7b90a2c24 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script AC_PREREQ(2.65) -AC_INIT([xrdp], [0.9.25], [xrdp-devel@googlegroups.com]) +AC_INIT([xrdp], [0.9.25.1], [xrdp-devel@googlegroups.com]) AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in) AM_INIT_AUTOMAKE([1.7.2 foreign]) AC_CONFIG_MACRO_DIR([m4])