From 25da65894d030d16985fb4021835e284bf829110 Mon Sep 17 00:00:00 2001 From: aschumann-virtualcable Date: Thu, 26 Mar 2026 12:19:29 +0100 Subject: [PATCH] Set RDP file usage default to false for Linux and Mac Updates the default setting to not use RDP files for Thincast or xfreerdp on Linux and Mac OS X. Prevents automatic RDP file usage unless explicitly enabled, likely to better match user expectations or deployment configurations. --- server/src/uds/transports/RDP/rdp_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/uds/transports/RDP/rdp_base.py b/server/src/uds/transports/RDP/rdp_base.py index 7c59b39ca..7aa64b8f7 100644 --- a/server/src/uds/transports/RDP/rdp_base.py +++ b/server/src/uds/transports/RDP/rdp_base.py @@ -302,7 +302,7 @@ class BaseRDPTransport(transports.Transport): order=42, tooltip=_('If marked, an RDP file will be used for connections with Thincast or xfreerdp on Linux.'), tab='Linux Client', - default=True, + default=False, old_field_name='lnx_thincastRdpFile', ) lnx_printer_string = gui.TextField( @@ -346,7 +346,7 @@ class BaseRDPTransport(transports.Transport): order=51, tooltip=_('If marked, an RDP file will be used for connections with Thincast or xfreerdp on Mac OS X.'), tab='Mac OS X', - default=True, + default=False, old_field_name='mac_thincastRdpFile', )