You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2022/03/09 00:06:32 UTC

[guacamole-client] branch master updated (000357f -> ed7746e)

This is an automated email from the ASF dual-hosted git repository.

vnick pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/guacamole-client.git.


    from 000357f  GUACAMOLE-1545: Merge ensure tunnel "onload" fires only for true state changes.
     add 389bbec  GUACAMOLE-462: Store REST API history entry directly in ConnectionHistoryEntryWrapper, rather than duplicating properties.
     add 2428c7e  GUACAMOLE-462: Report size of files downloaded via the static HTTP tunnel.
     add 5317114  GUACAMOLE-462: Add in-app player for session recordings.
     add 357e585  GUACAMOLE-462: Declare variables with "const" where appropriate.
     new ed7746e  GUACAMOLE-462: Merge add in-app player for session recordings.

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:
 .../src/main/webapp/modules/Tunnel.js              |  11 +
 .../bundled/glyptodon-enterprise-player}/LICENSE   |   4 +-
 .../bundled/glyptodon-enterprise-player/README     |   9 +
 .../src/app/index/config/indexRouteConfig.js       |   9 +
 .../src/app/index/filters/resolveFilter.js         |  53 +++
 .../frontend/src/app/player/directives/player.js   | 388 +++++++++++++++++++++
 .../src/app/player/directives/playerDisplay.js     | 138 ++++++++
 .../src/app/player/directives/progressIndicator.js | 101 ++++++
 .../main/frontend/src/app/player/playerModule.js   |  52 +++
 .../main/frontend/src/app/player/styles/player.css | 147 ++++++++
 .../src/app/player/styles/playerDisplay.css        |  77 ++++
 .../src/app/player/styles/progressIndicator.css    | 125 +++++++
 .../main/frontend/src/app/player/styles/seek.css   | 170 +++++++++
 .../frontend/src/app/player/templates/player.html  |  41 +++
 .../src/app/player/templates/playerDisplay.html    |   3 +
 .../app/player/templates/progressIndicator.html    |  12 +
 .../connectionHistoryPlayerController.js           |  50 +++
 .../directives/guacSettingsConnectionHistory.js    |  18 +-
 .../frontend/src/app/settings/settingsModule.js    |   1 +
 .../src/app/settings/styles/history-player.css     | 114 ++++++
 .../frontend/src/app/settings/styles/history.css   |  18 +-
 .../templates/settingsConnectionHistory.html       |  27 +-
 .../templates/settingsConnectionHistoryPlayer.html |  11 +
 .../types/ConnectionHistoryEntryWrapper.js         | 122 ++++---
 .../src/images/action-icons/guac-pause.svg         |   1 +
 .../src/images/action-icons/guac-play-link.svg     |   1 +
 .../frontend/src/images/action-icons/guac-play.svg |   1 +
 .../src/main/frontend/src/translations/en.json     |  20 +-
 28 files changed, 1652 insertions(+), 72 deletions(-)
 copy {doc/licenses/angular-1.8.2 => guacamole/src/licenses/bundled/glyptodon-enterprise-player}/LICENSE (93%)
 create mode 100644 guacamole/src/licenses/bundled/glyptodon-enterprise-player/README
 create mode 100644 guacamole/src/main/frontend/src/app/index/filters/resolveFilter.js
 create mode 100644 guacamole/src/main/frontend/src/app/player/directives/player.js
 create mode 100644 guacamole/src/main/frontend/src/app/player/directives/playerDisplay.js
 create mode 100644 guacamole/src/main/frontend/src/app/player/directives/progressIndicator.js
 create mode 100644 guacamole/src/main/frontend/src/app/player/playerModule.js
 create mode 100644 guacamole/src/main/frontend/src/app/player/styles/player.css
 create mode 100644 guacamole/src/main/frontend/src/app/player/styles/playerDisplay.css
 create mode 100644 guacamole/src/main/frontend/src/app/player/styles/progressIndicator.css
 create mode 100644 guacamole/src/main/frontend/src/app/player/styles/seek.css
 create mode 100644 guacamole/src/main/frontend/src/app/player/templates/player.html
 create mode 100644 guacamole/src/main/frontend/src/app/player/templates/playerDisplay.html
 create mode 100644 guacamole/src/main/frontend/src/app/player/templates/progressIndicator.html
 create mode 100644 guacamole/src/main/frontend/src/app/settings/controllers/connectionHistoryPlayerController.js
 create mode 100644 guacamole/src/main/frontend/src/app/settings/styles/history-player.css
 create mode 100644 guacamole/src/main/frontend/src/app/settings/templates/settingsConnectionHistoryPlayer.html
 create mode 100644 guacamole/src/main/frontend/src/images/action-icons/guac-pause.svg
 create mode 100644 guacamole/src/main/frontend/src/images/action-icons/guac-play-link.svg
 create mode 100644 guacamole/src/main/frontend/src/images/action-icons/guac-play.svg

[guacamole-client] 01/01: GUACAMOLE-462: Merge add in-app player for session recordings.

Posted by vn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vnick pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/guacamole-client.git

commit ed7746e0612d569644277a2aa654c5eda4447c8e
Merge: 000357f 357e585
Author: Virtually Nick <ne...@users.noreply.github.com>
AuthorDate: Tue Mar 8 19:06:27 2022 -0500

    GUACAMOLE-462: Merge add in-app player for session recordings.

 .../src/main/webapp/modules/Tunnel.js              |  11 +
 .../bundled/glyptodon-enterprise-player/LICENSE    |  19 +
 .../bundled/glyptodon-enterprise-player/README     |   9 +
 .../src/app/index/config/indexRouteConfig.js       |   9 +
 .../src/app/index/filters/resolveFilter.js         |  53 +++
 .../frontend/src/app/player/directives/player.js   | 388 +++++++++++++++++++++
 .../src/app/player/directives/playerDisplay.js     | 138 ++++++++
 .../src/app/player/directives/progressIndicator.js | 101 ++++++
 .../main/frontend/src/app/player/playerModule.js   |  52 +++
 .../main/frontend/src/app/player/styles/player.css | 147 ++++++++
 .../src/app/player/styles/playerDisplay.css        |  77 ++++
 .../src/app/player/styles/progressIndicator.css    | 125 +++++++
 .../main/frontend/src/app/player/styles/seek.css   | 170 +++++++++
 .../frontend/src/app/player/templates/player.html  |  41 +++
 .../src/app/player/templates/playerDisplay.html    |   3 +
 .../app/player/templates/progressIndicator.html    |  12 +
 .../connectionHistoryPlayerController.js           |  50 +++
 .../directives/guacSettingsConnectionHistory.js    |  18 +-
 .../frontend/src/app/settings/settingsModule.js    |   1 +
 .../src/app/settings/styles/history-player.css     | 114 ++++++
 .../frontend/src/app/settings/styles/history.css   |  18 +-
 .../templates/settingsConnectionHistory.html       |  27 +-
 .../templates/settingsConnectionHistoryPlayer.html |  11 +
 .../types/ConnectionHistoryEntryWrapper.js         | 122 ++++---
 .../src/images/action-icons/guac-pause.svg         |   1 +
 .../src/images/action-icons/guac-play-link.svg     |   1 +
 .../frontend/src/images/action-icons/guac-play.svg |   1 +
 .../src/main/frontend/src/translations/en.json     |  20 +-
 28 files changed, 1670 insertions(+), 69 deletions(-)