diff options
author | Koichiro IWAO <meta@vmeta.jp> | 2017-07-06 15:11:56 +0900 |
---|---|---|
committer | metalefty <meta@vmeta.jp> | 2017-07-06 18:07:32 +0900 |
commit | 73a37a544151a2fbb9fa9295f77b34e3f80288bb (patch) | |
tree | 038e6fcb8dec667f4f2edde8a735ba45413c18ea | |
parent | e0b73bf700ac5f730ba2fc7ef1706734381d1874 (diff) | |
download | xrdp-proprietary-73a37a544151a2fbb9fa9295f77b34e3f80288bb.tar.gz xrdp-proprietary-73a37a544151a2fbb9fa9295f77b34e3f80288bb.zip |
Prepare release v0.9.3
-rw-r--r-- | NEWS.md | 23 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | xorg/X11R7.6/rdp/rdp.h | 2 |
4 files changed, 26 insertions, 3 deletions
@@ -1,3 +1,26 @@ +# Release notes for xrdp v0.9.3 (2017/07/07) + +## New features + * Log user-friendly messages when certificate/privkey is inaccessible + +## Bugfixes + * Now sesman sets mandatory LOGNAME environment variable #725 + * Exit with failure status if port already in use #644 + * Eliminate some hard coded paths + * Fix some keyboard layout integration (UK, Spanish) + * Fix handle OS when IPv6 disabled #714 + * Fix sesadmin shows error when no sessions #797 + * Fix TLS spins 100% CPU #728 + * Fix Xvnc backend disconnects when some data copied to clipboard #755 + * Pick up the first section if given section(domain) doesn't match anything #750 + +## Other changes + * Change xrdp-chansrv log path to include display number + * Optimize startwm.sh for SUSE + * Several cleanups and optimizations + +----------------------- + # Release notes for xrdp v0.9.2 (2017/03/30) ## New features * RemoteFX codec support is now enabled by default. @@ -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.2 +*Current Version:* 0.9.3 # xrdp - an open source RDP server diff --git a/configure.ac b/configure.ac index 4ad340ab..593017bc 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.2], [xrdp-devel@googlegroups.com]) +AC_INIT([xrdp], [0.9.3], [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]) diff --git a/xorg/X11R7.6/rdp/rdp.h b/xorg/X11R7.6/rdp/rdp.h index 16ff5492..f9240403 100644 --- a/xorg/X11R7.6/rdp/rdp.h +++ b/xorg/X11R7.6/rdp/rdp.h @@ -76,7 +76,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. //#include "colormapst.h" -#define X11RDPVER "0.9.2" +#define X11RDPVER "0.9.3" #define PixelDPI 100 #define PixelToMM(_size) (((_size) * 254 + (PixelDPI) * 5) / ((PixelDPI) * 10)) |