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 2019/04/06 18:09:54 UTC

[guacamole-client] branch master updated (50b4bec -> f170b7e)

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 50b4bec  GUACAMOLE-678: Merge new URI implementation of GuacamoleProperty.
     new 2d0bc70  GUACAMOLE-723: Avoid DOM reflow when switching connections.
     new f92bf9c  GUACAMOLE-723: Move getClientIdentifier() to GroupListItem for convenience of other uses of the guacGroupList directive.
     new 57cdd2b  GUACAMOLE-723: Allow connections to be selected within the Guacamole menu.
     new e7eb46b  GUACAMOLE-723: Display connection thumbnails for all non-current active connections within the client interface.
     new aa633c2  GUACAMOLE-723: Organize other active connections within collapsible panel.
     new e0dcd67  GUACAMOLE-723: Update size of attached client when a different client is attached.
     new 53bb198  GUACAMOLE-723: Persist client panel state across navigation.
     new 07a967b  GUACAMOLE-723: Ensure client panel renders above status notifications.
     new dc012e4  GUACAMOLE-723: Hide scrollbar and thumbnails when client panel is hidden.
     new bd474e9  GUACAMOLE-723: Allow mouse interaction with the contents of a menu without closing the menu.
     new 7fddb26  GUACAMOLE-723: Limit size of connections in menu to 10 items. Restore padding around list and pager.
     new 19da6e3  GUACAMOLE-723: Allow connections in Guacamole menu dropdown to be filtered.
     new 378cae5  GUACAMOLE-723: Sort connections in panel by last use.
     new d7dfd08  GUACAMOLE-723: Display warning icon when background connection disconnects due to an error.
     new cbd357c  GUACAMOLE-723: Allow connections to be closed/removed directly from the panel.
     new b5bfc68  GUACAMOLE-723: Size panel thumbnails vertically, not horizontally.
     new 319c40c  GUACAMOLE-723: Ensure thumbnail is always confined within designated space.
     new f170b7e  GUACAMOLE-723: Add interface for switching between multiple active connections.

The 5052 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:
 .../app/client/controllers/clientController.js     |  78 +++++++-
 .../webapp/app/client/directives/guacClient.js     |   3 +
 .../app/client/directives/guacClientPanel.js       | 170 +++++++++++++++++
 .../main/webapp/app/client/styles/guac-menu.css    |  23 +++
 .../src/main/webapp/app/client/styles/keyboard.css |   7 +
 .../webapp/app/client/styles/other-connections.css | 206 +++++++++++++++++++++
 .../main/webapp/app/client/styles/text-input.css   |   7 +-
 .../main/webapp/app/client/templates/client.html   |  31 +++-
 .../webapp/app/client/templates/connection.html    |   4 +
 .../app/client/templates/connectionGroup.html      |   4 +
 .../app/client/templates/guacClientPanel.html      |  32 ++++
 .../main/webapp/app/client/types/ManagedClient.js  |  10 +
 .../main/webapp/app/groupList/groupListModule.js   |   6 +-
 .../webapp/app/groupList/types/GroupListItem.js    |  46 ++++-
 .../webapp/app/home/controllers/homeController.js  |  46 -----
 .../main/webapp/app/home/templates/connection.html |   2 +-
 .../webapp/app/home/templates/connectionGroup.html |   2 +-
 .../src/main/webapp/app/home/templates/home.html   |   1 -
 .../webapp/app/navigation/directives/guacMenu.js   |  13 ++
 guacamole/src/main/webapp/images/arrows/left.png   | Bin 0 -> 246 bytes
 guacamole/src/main/webapp/images/warning-white.png | Bin 0 -> 4506 bytes
 guacamole/src/main/webapp/translations/de.json     |   2 +
 guacamole/src/main/webapp/translations/en.json     |   2 +
 guacamole/src/main/webapp/translations/es.json     |   2 +
 guacamole/src/main/webapp/translations/fr.json     |   2 +
 guacamole/src/main/webapp/translations/it.json     |   2 +
 guacamole/src/main/webapp/translations/nl.json     |   2 +
 guacamole/src/main/webapp/translations/no.json     |   2 +
 guacamole/src/main/webapp/translations/ru.json     |   2 +
 guacamole/src/main/webapp/translations/zh.json     |   2 +
 30 files changed, 640 insertions(+), 69 deletions(-)
 create mode 100644 guacamole/src/main/webapp/app/client/directives/guacClientPanel.js
 create mode 100644 guacamole/src/main/webapp/app/client/styles/other-connections.css
 copy doc/guacamole-example/src/main/webapp/guacamole.css => guacamole/src/main/webapp/app/client/styles/text-input.css (89%)
 create mode 100644 guacamole/src/main/webapp/app/client/templates/connection.html
 create mode 100644 guacamole/src/main/webapp/app/client/templates/connectionGroup.html
 create mode 100644 guacamole/src/main/webapp/app/client/templates/guacClientPanel.html
 create mode 100644 guacamole/src/main/webapp/images/arrows/left.png
 create mode 100644 guacamole/src/main/webapp/images/warning-white.png