diff --git a/NEWS.md b/NEWS.md index 99a5b3c452..ae1adb8a9d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,31 @@ +# 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. + +## 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. + +## Security fixes +No new security fixes in this release. + +## Bug fixes +* Backport touchpad inertial scrolling (#2364 #2424 #2948). + +## New features +* If the client announces support for the Image RemoteFX codec it is logged (back-port of #2946) + +## Internal changes +* FreeBSD CI version bumped to 13.2 from 12.4 (#2897) +* Some test timeouts have been increased for slow CI machines (#2903) + +## Known issues +* On-the-fly resolution change requires the Microsoft Store version of Remote Desktop client but sometimes crashes on connect (#1869) +* xrdp's login dialog is not relocated at the center of the new resolution after on-the-fly resolution change happens (#1867) + +----------------------- + # Release notes for xrdp v0.9.24 (2023/12/30) * 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. diff --git a/configure.ac b/configure.ac index e2e4d63da1..0991203f37 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.24], [xrdp-devel@googlegroups.com]) +AC_INIT([xrdp], [0.9.25], [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])