Skip to content

Commit

Permalink
GUACAMOLE-1760: Merge client-side options for compression and quality…
Browse files Browse the repository at this point in the history
… levels
  • Loading branch information
jmuehlner committed Apr 17, 2024
2 parents 0e12f48 + a909f23 commit 8c2859b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "compress-level",
"type" : "ENUM",
"options" : [ "", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" ]
},
{
"name" : "quality-level",
"type" : "ENUM",
"options" : [ "", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" ]
},
{
"name" : "encodings",
"type" : "TEXT"
Expand Down
26 changes: 26 additions & 0 deletions guacamole/src/main/frontend/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,7 @@
"FIELD_HEADER_AUDIO_SERVERNAME" : "Audio server name:",
"FIELD_HEADER_CLIPBOARD_ENCODING" : "Encoding:",
"FIELD_HEADER_COLOR_DEPTH" : "Color depth:",
"FIELD_HEADER_COMPRESS_LEVEL" : "Compression level:",
"FIELD_HEADER_CREATE_RECORDING_PATH" : "Automatically create recording path:",
"FIELD_HEADER_CURSOR" : "Cursor:",
"FIELD_HEADER_DEST_HOST" : "Destination host:",
Expand All @@ -912,6 +913,7 @@
"FIELD_HEADER_USERNAME" : "Username:",
"FIELD_HEADER_PASSWORD" : "Password:",
"FIELD_HEADER_PORT" : "Port:",
"FIELD_HEADER_QUALITY_LEVEL" : "Display quality:",
"FIELD_HEADER_READ_ONLY" : "Read-only:",
"FIELD_HEADER_RECORDING_WRITE_EXISTING" : "@:APP.FIELD_HEADER_RECORDING_WRITE_EXISTING",
"FIELD_HEADER_RECORDING_EXCLUDE_MOUSE" : "Exclude mouse:",
Expand Down Expand Up @@ -944,6 +946,18 @@
"FIELD_OPTION_COLOR_DEPTH_32" : "True color (32-bit)",
"FIELD_OPTION_COLOR_DEPTH_EMPTY" : "",

"FIELD_OPTION_COMPRESS_LEVEL_0" : "0",
"FIELD_OPTION_COMPRESS_LEVEL_1" : "1",
"FIELD_OPTION_COMPRESS_LEVEL_2" : "2",
"FIELD_OPTION_COMPRESS_LEVEL_3" : "3",
"FIELD_OPTION_COMPRESS_LEVEL_4" : "4",
"FIELD_OPTION_COMPRESS_LEVEL_5" : "5",
"FIELD_OPTION_COMPRESS_LEVEL_6" : "6",
"FIELD_OPTION_COMPRESS_LEVEL_7" : "7",
"FIELD_OPTION_COMPRESS_LEVEL_8" : "8",
"FIELD_OPTION_COMPRESS_LEVEL_9" : "9",
"FIELD_OPTION_COMPRESS_LEVEL_EMPTY" : "",

"FIELD_OPTION_CURSOR_EMPTY" : "",
"FIELD_OPTION_CURSOR_LOCAL" : "Local",
"FIELD_OPTION_CURSOR_REMOTE" : "Remote",
Expand All @@ -954,6 +968,18 @@
"FIELD_OPTION_CLIPBOARD_ENCODING_UTF_8" : "UTF-8",
"FIELD_OPTION_CLIPBOARD_ENCODING_UTF_16" : "UTF-16",

"FIELD_OPTION_QUALITY_LEVEL_0" : "0",
"FIELD_OPTION_QUALITY_LEVEL_1" : "1",
"FIELD_OPTION_QUALITY_LEVEL_2" : "2",
"FIELD_OPTION_QUALITY_LEVEL_3" : "3",
"FIELD_OPTION_QUALITY_LEVEL_4" : "4",
"FIELD_OPTION_QUALITY_LEVEL_5" : "5",
"FIELD_OPTION_QUALITY_LEVEL_6" : "6",
"FIELD_OPTION_QUALITY_LEVEL_7" : "7",
"FIELD_OPTION_QUALITY_LEVEL_8" : "8",
"FIELD_OPTION_QUALITY_LEVEL_9" : "9",
"FIELD_OPTION_QUALITY_LEVEL_EMPTY" : "",

"NAME" : "VNC",

"SECTION_HEADER_AUDIO" : "Audio",
Expand Down

0 comments on commit 8c2859b

Please sign in to comment.