diff --git a/guacamole/src/main/webapp/scripts/service.js b/guacamole/src/main/webapp/scripts/service.js index e6f19f2a9..9f8c1a155 100644 --- a/guacamole/src/main/webapp/scripts/service.js +++ b/guacamole/src/main/webapp/scripts/service.js @@ -614,10 +614,51 @@ GuacamoleService.Protocols = { "title" : "Port", "type" : "text", "value" : "5900" + }, + + "color-depth" : { + "title" : "Color depth", + "type" : "enum", + "options" : { + "8" : "256 colors", + "16": "High color (16-bit)", + "24": "True color (24-bit)" + } + }, + + "read-only" : { + "title" : "Read-only", + "type" : "boolean", + "checked" : "true", + "unchecked" : "" } } + }, { + + /* Unique name */ + "name" : "rdp", + + /* Display title */ + "title" : "RDP", + + /* All available parameters */ + "parameters" : { + + "hostname" : { + "title" : "Hostname", + "type" : "text" + }, + + "port" : { + "title" : "Port", + "type" : "text", + "value" : "3389" + } + + } + }]; }