From 6928caa3bd9a6571f482e70abbbd5fdde5d83f65 Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Mon, 19 Aug 2019 15:58:36 +0900 Subject: [PATCH 1/2] Update NEWS for v0.9.11 release --- NEWS.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index f9afe68e..19313e99 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,21 @@ +# Release notes for xrdp v1.9.11 (2019/08/19) + +## New features +* Suppress output (do not draw screen when client window is minimized) #1330 +* Audio input (microphone) redirection compatible with [MS-RDPEAI](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rdpeai/d04ffa42-5a0f-4f80-abb1-cc26f71c9452) #1369 +* Now xrdp can listen on more than one port #1124 #1366 + +## Bug fixes +* Fix the issue audio redirection sometimes sounds with long delay #1363 +* Check term event for more responsive shutdown #1372 + +## Known issues +* FreeRDP 2.0.0-rc4 or later might not able to connect to xrdp due to + xrdp's bad-mannered behaviour, add `+glyph-cache` option to FreeRDP to connect #1266 +* Audio redirection by MP3 codec doesn't sound with some client, use AAC instead #965 + +----------------------- + # Release notes for xrdp v0.9.10 (2019/04/18) ## Special thanks @@ -11,7 +29,7 @@ Thank you for matt335672 contributing to lots of improvements in drive redirecti * Fix the issue reconnecting to session causes duplicate drive entries in fuse fs #1299 * Fix default_wm and reconnect_sh refer wrong path after sesman caught SIGUP #1315 #1331 * Shutdown xrdp more responsively #1325 -* Improve remote file lookup in drive redirection #996 #1327 +* Improve remote file lookup in drive redirection #996 #1327 * Overwriting & appending to existing files is are now supported #1327 ## Other changes From a3502926284e6f7f0723a9e207f1f287933ef86e Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Mon, 19 Aug 2019 16:00:33 +0900 Subject: [PATCH 2/2] bump version to v0.9.11 --- README.md | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e53b1f4..1874f252 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/neutrinolabs/xrdp) ![Apache-License](https://img.shields.io/badge/License-Apache%202.0-blue.svg) -*Current Version:* 0.9.10 +*Current Version:* 0.9.11 # xrdp - an open source RDP server diff --git a/configure.ac b/configure.ac index b2936a9d..f89f48e8 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.10], [xrdp-devel@googlegroups.com]) +AC_INIT([xrdp], [0.9.11], [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])