Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GUACAMOLE-1931: Add configuration option to allow overwriting recording files. #961

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@
"name" : "create-recording-path",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-write-existing",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,11 @@
"name" : "create-recording-path",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-write-existing",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@
"name" : "create-recording-path",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-write-existing",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@
"name" : "create-recording-path",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-write-existing",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@
"name" : "create-recording-path",
"type" : "BOOLEAN",
"options" : [ "true" ]
},
{
"name" : "recording-write-existing",
"type" : "BOOLEAN",
"options" : [ "true" ]
}
]
},
Expand Down
6 changes: 6 additions & 0 deletions guacamole/src/main/frontend/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

"FIELD_HEADER_PASSWORD" : "Password:",
"FIELD_HEADER_PASSWORD_AGAIN" : "Re-enter Password:",
"FIELD_HEADER_RECORDING_WRITE_EXISTING" : "Allow writing to existing recording file:",

"FIELD_PLACEHOLDER_FILTER" : "Filter",

Expand Down Expand Up @@ -514,6 +515,7 @@
"FIELD_HEADER_POD" : "Pod name:",
"FIELD_HEADER_PORT" : "Port:",
"FIELD_HEADER_READ_ONLY" : "Read-only:",
"FIELD_HEADER_RECORDING_WRITE_EXISTING" : "@:APP.FIELD_HEADER_RECORDING_WRITE_EXISTING",
"FIELD_HEADER_RECORDING_EXCLUDE_MOUSE" : "Exclude mouse:",
"FIELD_HEADER_RECORDING_EXCLUDE_OUTPUT" : "Exclude graphics/streams:",
"FIELD_HEADER_RECORDING_INCLUDE_KEYS" : "Include key events:",
Expand Down Expand Up @@ -615,6 +617,7 @@
"FIELD_HEADER_PRECONNECTION_BLOB" : "Preconnection BLOB (VM ID):",
"FIELD_HEADER_PRECONNECTION_ID" : "RDP source ID:",
"FIELD_HEADER_READ_ONLY" : "Read-only:",
"FIELD_HEADER_RECORDING_WRITE_EXISTING" : "@:APP.FIELD_HEADER_RECORDING_WRITE_EXISTING",
"FIELD_HEADER_RECORDING_EXCLUDE_MOUSE" : "Exclude mouse:",
"FIELD_HEADER_RECORDING_EXCLUDE_OUTPUT" : "Exclude graphics/streams:",
"FIELD_HEADER_RECORDING_EXCLUDE_TOUCH" : "Exclude touch events:",
Expand Down Expand Up @@ -736,6 +739,7 @@
"FIELD_HEADER_PRIVATE_KEY" : "Private key:",
"FIELD_HEADER_SCROLLBACK" : "Maximum scrollback size:",
"FIELD_HEADER_READ_ONLY" : "Read-only:",
"FIELD_HEADER_RECORDING_WRITE_EXISTING" : "@:APP.FIELD_HEADER_RECORDING_WRITE_EXISTING",
"FIELD_HEADER_RECORDING_EXCLUDE_MOUSE" : "Exclude mouse:",
"FIELD_HEADER_RECORDING_EXCLUDE_OUTPUT" : "Exclude graphics/streams:",
"FIELD_HEADER_RECORDING_INCLUDE_KEYS" : "Include key events:",
Expand Down Expand Up @@ -823,6 +827,7 @@
"FIELD_HEADER_PASSWORD_REGEX" : "Password regular expression:",
"FIELD_HEADER_PORT" : "Port:",
"FIELD_HEADER_READ_ONLY" : "Read-only:",
"FIELD_HEADER_RECORDING_WRITE_EXISTING" : "@:APP.FIELD_HEADER_RECORDING_WRITE_EXISTING",
"FIELD_HEADER_RECORDING_EXCLUDE_MOUSE" : "Exclude mouse:",
"FIELD_HEADER_RECORDING_EXCLUDE_OUTPUT" : "Exclude graphics/streams:",
"FIELD_HEADER_RECORDING_INCLUDE_KEYS" : "Include key events:",
Expand Down Expand Up @@ -904,6 +909,7 @@
"FIELD_HEADER_PASSWORD" : "Password:",
"FIELD_HEADER_PORT" : "Port:",
"FIELD_HEADER_READ_ONLY" : "Read-only:",
"FIELD_HEADER_RECORDING_WRITE_EXISTING" : "@:APP.FIELD_HEADER_RECORDING_WRITE_EXISTING",
"FIELD_HEADER_RECORDING_EXCLUDE_MOUSE" : "Exclude mouse:",
"FIELD_HEADER_RECORDING_EXCLUDE_OUTPUT" : "Exclude graphics/streams:",
"FIELD_HEADER_RECORDING_INCLUDE_KEYS" : "Include key events:",
Expand Down
Loading