From 2362c38b68edc52653125942822a8e39442cff44 Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Fri, 19 Apr 2024 11:23:26 +0900 Subject: [PATCH 1/3] Update NEWS --- NEWS.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 0a9b636..b24b173 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,34 @@ -# Release notes for xrdp v0.10.0 (2024/03/10) +# Release notes for xorgxrdp v0.10.1 (2024/04/20) + +## General announcements +The biggest news of v0.10 is that [Graphic Pipeline Extension](https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-rdpegfx/da5c75f9-cd99-450c-98c4-014a496942b0) also called GFX in short has been supported. xrdp v0.10 with GFX achieves more frame rates and less bandwidth compared to v0.9. There is a significant performance improvement especially if the client is Windows 11's mstsc.exe or Microsoft Remote Desktop for Mac. GFX H.264/AVC 444 mode and hardware-accelerated encoding are not supported in this version yet. + +GFX implementation in xrdp is sponsored by an enterprise sponsor. @CyberTrust is also one of the sponsors. We very much appreciate the sponsorship. It helped us to accelerate xrdp development and land GFX earlier! + +Please consider sponsoring or making a donation to the project if you like xrdp. We accept financial contributions via [Open Collective](https://opencollective.com/xrdp-project). Direct donations to each developer via GitHub Sponsors are also welcomed. + +## Security fixes +None + +## New features +- Switch to wyhash from CRC for capture tile diff and introduce lazy color conversion (#167 #301) + - Thanks to @trishume! + +## Bug fixes +None + +## Internal changes +None + +## Known issues +None + +## Changes for packagers or developers +- If moving from v0.9.x, read the '[Significant changes for packagers or developers section](#significant-changes-for-packagers-or-developers)' for the v0.10 branch below. + +----------------------- + +# Release notes for xorgxrdp v0.10.0 (2024/03/10) This section notes changes since the [v0.10 branch](#branch-v010) was created. From ef4e787d6895d9ee43689b9534077a6b243281e3 Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Fri, 19 Apr 2024 11:23:51 +0900 Subject: [PATCH 2/3] Bump verson to v0.10.1 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 640a2d2..24ba21a 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.65) # package version must be x.y.z -AC_INIT([xorgxrdp], [0.10.0], [xrdp-devel@googlegroups.com]) +AC_INIT([xorgxrdp], [0.10.1], [xrdp-devel@googlegroups.com]) package_version_major=$(echo ${PACKAGE_VERSION}|cut -d. -f1) package_version_minor=$(echo ${PACKAGE_VERSION}|cut -d. -f2) package_version_patchlevel=$(echo ${PACKAGE_VERSION}|cut -d. -f3) From ec2326b638b46f84db029df599a24419eda74157 Mon Sep 17 00:00:00 2001 From: Koichiro Iwao Date: Fri, 19 Apr 2024 11:46:09 +0900 Subject: [PATCH 3/3] Add script to update NEWS from wiki --- scripts/update_news.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 scripts/update_news.sh diff --git a/scripts/update_news.sh b/scripts/update_news.sh new file mode 100644 index 0000000..e13532c --- /dev/null +++ b/scripts/update_news.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +curl https://raw.githubusercontent.com/wiki/neutrinolabs/xorgxrdp/NEWS-v0.10.md > $(git rev-parse --show-toplevel)/NEWS.md