From: Pierre Ossman Date: Thu, 16 Jul 2020 11:52:05 +0000 (+0200) Subject: Warn that WinVNC is unmaintained X-Git-Tag: v1.10.90~7^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cd2952c7bd0d952b6ffbf42543898e0f7a44ce9d;p=tigervnc.git Warn that WinVNC is unmaintained --- diff --git a/README.rst b/README.rst index bff78014..d2aede19 100644 --- a/README.rst +++ b/README.rst @@ -64,6 +64,8 @@ The Windows version of TigerVNC contains the following programs: * winvnc - the TigerVNC Server for Windows. winvnc allows a Windows desktop to be accessed remotely using a VNC viewer. +WARNING: winvnc is currently unmaintainted and and may not function correctly. + winvnc may not work if the Fast User Switching or Remote Desktop features are in use. diff --git a/release/winvnc.iss.in b/release/winvnc.iss.in index 2173038a..adb83f26 100644 --- a/release/winvnc.iss.in +++ b/release/winvnc.iss.in @@ -113,6 +113,7 @@ var function InitializeSetup: Boolean; begin GetWindowsVersionEx(OSVersion); + MsgBox('TigerVNC Windows Server is currently unmaintained and may not function correctly.', mbError, MB_OK); Result := True; end;