You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2023/01/11 05:59:20 UTC

[guacamole-client] branch staging/1.5.0 updated (5966dcae6 -> 28ae0a933)

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

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


    from 5966dcae6 GUACAMOLE-1604: Merge version number bumps to 1.5.0.
     add ca2b89077 GUACAMOLE-1293: Add common support for the msg instruction.
     add 33432c228 GUACAMOLE-1293: Add client-side support for join/leave notification.
     add 3abecff0d GUACAMOLE-1293: Add common support for the name handshake instruction.
     add 236164c6e GUACAMOLE-1293: Add tunnel support for setting the name during client handshake.
     add d0b5ffe96 GUACAMOLE-1293: Change handshake instruction and client to username.
     add 871ffe728 GUACAMOLE-1293: Change msg instruction to code plus arguments.
     add 773a03a7d GUACAMOLE-1293: Correct and add missing comments for accuracy and clarity.
     add 22e8ba66e GUACAMOLE-1293: Add type notations to comments; switch arguments to more obvious strings.
     add 9e5f10137 GUACAMOLE-1293: Change "username" instruction to simply "name" for clarity on its purpose.
     add b666aebce GUACAMOLE-1293: Adjust argument displayed to user to match position from guacd.
     add 934e43790 GUACAMOLE-1293: Tweak translation names to match arguments and use translation service to canonicalize.
     new 28ae0a933 GUACAMOLE-1293: Merge client support for join/leave notifications.

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/Client.js              | 49 ++++++++++++
 .../protocol/ConfiguredGuacamoleSocket.java        |  9 ++-
 .../protocol/GuacamoleClientInformation.java       | 32 +++++++-
 .../protocol/GuacamoleProtocolCapability.java      | 15 ++++
 .../protocol/GuacamoleProtocolVersion.java         | 11 ++-
 .../src/app/client/controllers/clientController.js | 18 +++++
 .../src/app/client/directives/guacClientMessage.js | 87 ++++++++++++++++++++++
 .../src/app/client/directives/guacMessageDialog.js | 76 +++++++++++++++++++
 .../src/app/client/styles/client-message.css       |  5 ++
 ...file-transfer-dialog.css => message-dialog.css} | 20 +++--
 .../frontend/src/app/client/templates/client.html  |  5 ++
 .../app/client/templates/guacClientMessage.html    |  8 ++
 .../app/client/templates/guacMessageDialog.html    | 21 ++++++
 .../frontend/src/app/client/types/ManagedClient.js | 38 ++++++++++
 ...dClientThumbnail.js => ManagedClientMessage.js} | 37 ++++-----
 .../src/main/frontend/src/translations/en.json     | 17 +++--
 .../guacamole/tunnel/TunnelRequestService.java     |  5 ++
 17 files changed, 417 insertions(+), 36 deletions(-)
 create mode 100644 guacamole/src/main/frontend/src/app/client/directives/guacClientMessage.js
 create mode 100644 guacamole/src/main/frontend/src/app/client/directives/guacMessageDialog.js
 copy extensions/guacamole-auth-radius/src/main/resources/license.txt => guacamole/src/main/frontend/src/app/client/styles/client-message.css (94%)
 copy guacamole/src/main/frontend/src/app/client/styles/{file-transfer-dialog.css => message-dialog.css} (87%)
 create mode 100644 guacamole/src/main/frontend/src/app/client/templates/guacClientMessage.html
 create mode 100644 guacamole/src/main/frontend/src/app/client/templates/guacMessageDialog.html
 copy guacamole/src/main/frontend/src/app/client/types/{ManagedClientThumbnail.js => ManagedClientMessage.js} (55%)


[guacamole-client] 01/01: GUACAMOLE-1293: Merge client support for join/leave notifications.

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

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

commit 28ae0a93315b919a3abf916cafeaf76cae27fa78
Merge: 5966dcae6 934e43790
Author: Mike Jumper <mj...@apache.org>
AuthorDate: Tue Jan 10 21:59:14 2023 -0800

    GUACAMOLE-1293: Merge client support for join/leave notifications.

 .../src/main/webapp/modules/Client.js              |  49 +++++++++
 .../protocol/ConfiguredGuacamoleSocket.java        |   9 +-
 .../protocol/GuacamoleClientInformation.java       |  32 +++++-
 .../protocol/GuacamoleProtocolCapability.java      |  15 +++
 .../protocol/GuacamoleProtocolVersion.java         |  11 +-
 .../src/app/client/controllers/clientController.js |  18 +++
 .../src/app/client/directives/guacClientMessage.js |  87 +++++++++++++++
 .../src/app/client/directives/guacMessageDialog.js |  76 +++++++++++++
 .../src/app/client/styles/client-message.css       |  23 ++++
 .../src/app/client/styles/message-dialog.css       | 122 +++++++++++++++++++++
 .../frontend/src/app/client/templates/client.html  |   5 +
 .../app/client/templates/guacClientMessage.html    |   8 ++
 .../app/client/templates/guacMessageDialog.html    |  21 ++++
 .../frontend/src/app/client/types/ManagedClient.js |  38 +++++++
 .../src/app/client/types/ManagedClientMessage.js   |  59 ++++++++++
 .../src/main/frontend/src/translations/en.json     |  17 ++-
 .../guacamole/tunnel/TunnelRequestService.java     |   5 +
 17 files changed, 585 insertions(+), 10 deletions(-)