This is an automated email from the ASF dual-hosted git repository.
mjumper pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/guacamole-client.git
from dbbc7553f Merge 1.5.3 changes back to master.
add 2a2cef918 GUACAMOLE-1820: Create UI for viewing, searching, and
navigating to key events in session recording player.
add 55f1fc2aa GUACAMOLE-1820: Extract and display richer information about
key events.
add 983393bdb GUACAMOLE-1820: Conslidate similar key events for better
performance.
add 1b2c52d49 GUACAMOLE-1820: Simplify unicode interpretation.
new 04008fafc GUACAMOLE-1820: Merge support for viewing key events in
recording player.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../LICENSE | 2 +-
doc/licenses/fuzzysort-2.0.4/README | 8 +
doc/licenses/fuzzysort-2.0.4/dep-coordinates.txt | 1 +
.../src/main/webapp/modules/KeyEventInterpreter.js | 550 +++++++++++++++++++++
.../src/main/webapp/modules/SessionRecording.js | 56 +++
guacamole/src/main/frontend/package-lock.json | 11 +
guacamole/src/main/frontend/package.json | 1 +
.../frontend/src/app/player/directives/player.js | 145 +++---
.../frontend/src/app/player/directives/textView.js | 134 +++++
.../src/app/player/services/playerTimeService.js | 109 ++++
.../main/frontend/src/app/player/styles/player.css | 61 ++-
.../frontend/src/app/player/styles/textView.css | 110 +++++
.../frontend/src/app/player/templates/player.html | 67 ++-
.../src/app/player/templates/textView.html | 29 ++
.../frontend/src/app/player/types/TextBatch.js | 117 +++++
.../src/app/settings/styles/history-player.css | 6 +-
.../templates/settingsConnectionHistoryPlayer.html | 9 +-
.../src/main/frontend/src/images/fullscreen.svg | 1 +
.../src/main/frontend/src/translations/en.json | 13 +-
19 files changed, 1333 insertions(+), 97 deletions(-)
copy doc/licenses/{datalist-polyfill-1.25.1 => fuzzysort-2.0.4}/LICENSE (96%)
create mode 100644 doc/licenses/fuzzysort-2.0.4/README
create mode 100644 doc/licenses/fuzzysort-2.0.4/dep-coordinates.txt
create mode 100644
guacamole-common-js/src/main/webapp/modules/KeyEventInterpreter.js
create mode 100644
guacamole/src/main/frontend/src/app/player/directives/textView.js
create mode 100644
guacamole/src/main/frontend/src/app/player/services/playerTimeService.js
create mode 100644
guacamole/src/main/frontend/src/app/player/styles/textView.css
create mode 100644
guacamole/src/main/frontend/src/app/player/templates/textView.html
create mode 100644
guacamole/src/main/frontend/src/app/player/types/TextBatch.js
create mode 100644 guacamole/src/main/frontend/src/images/fullscreen.svg