Skip to content

Commit

Permalink
Merged in pre-prod-2-0 (pull request #469)
Browse files Browse the repository at this point in the history
Release changes for 2.5.0
  • Loading branch information
dinawee committed Aug 1, 2022
2 parents fe94b5e + d7cfb91 commit dd35fe5
Show file tree
Hide file tree
Showing 270 changed files with 2,718 additions and 1,124 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SKYLINK WEB SDK 2.4.3
# SKYLINK WEB SDK 2.5.0
> Temasys SkylinkJS Web SDK is an open-source client-side library for your web-browser that enables any website to easily leverage the capabilities of WebRTC and its direct data streaming powers between peers for audio/video conferencing.
You'll need a Temasys Account, and an App key to use this. [Register here to get your App key](https://console.temasys.io).
Expand Down Expand Up @@ -34,7 +34,7 @@ You'll need a Temasys Account, and an App key to use this. [Register here to get
- We recommend that you always use the latest versions of the Temasys SkylinkJS Web SDK as WebRTC is still evolving and we adapt to changes very frequently.
- It is advised to not attach any event handlers to the WebRTC APIs as doing so may override the handlers set in SkylinkJS and result in unexpected behaviour.

[Latest version: 2.4.3](https://github.com/Temasys/SkylinkJS/releases/tag/2.4.3)
[Latest version: 2.5.0](https://github.com/Temasys/SkylinkJS/releases/tag/2.5.0)


## How to build your own Temasys SkylinkJS Web SDK
Expand Down
67 changes: 61 additions & 6 deletions demos/collection/kitchensink/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@
<td>User ID</td>
<td id="display_user_id">Not in Room</td>
</tr>
<tr>
<td>Room Session ID</td>
<td id="display_room_session_id"></td>
</tr>
<tr id="channel_status">
<td>Channel status</td>
<td id="channel">-</td>
Expand Down Expand Up @@ -179,10 +183,41 @@ <h3>Logs</h3>

</div>
</div>
<button id="join_room_btn" type="button" title="Join room" class="btn btn-primary">
<span class="glyphicon glyphicon glyphicon-play-circle"></span>
Join Room
</button>
<table>
<tbody>
<tr>
<td>
<div >
<table>
<tr>
<td>
<div class="margin-right-5">
<input id="join_room_user_info" type="text" class="form-control">
</div>
</td>
<td>
<div class="margin-right-5">
<button id="join_room_btn" type="button" title="Join room" class="btn btn-primary">
<span class="glyphicon glyphicon glyphicon-play-circle"></span>
Join Room
</button>
</div>
</td>
<td>
<div class="checkbox">
<label for="remember_me">
<input id="remember_me" type="checkbox" value="true" onclick="rememberMe(this)">
<b>remember me</b>
</label>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
Expand Down Expand Up @@ -400,7 +435,17 @@ <h3>Chat Log</h3>
<div id="chat_log" class="list-group"></div>
</div>
</div>
<button id="get_stored_messages_button" class="btn btn-primary">Get Stored Messages</button>
<div class="input-group">
<div>
<label for="room_session_id"><b>Room Session Id</b><i> (for testing)</i>
<input id="room_session_id" type="text" class="form-control">
</label>
</div>
<br>
<div class="btns">
<button id="get_stored_messages_button" class="btn btn-primary">Get Stored Messages</button>
</div>
</div>
</div>
<div class="encrypt-secrets-panel">
<div id="secret_id_panel" class="panel panel-default">
Expand Down Expand Up @@ -436,7 +481,17 @@ <h3>Chat Log</h3>
</div>
</form>
<textarea id="chat_input" placeholder="Enter your chat message here" class="well panel-chat"></textarea>
<button id="send_message_button" class="btn btn-primary">Send Message</button>
<div class="input-group">
<div>
<label for="peer_session_id"><b>Peer Session Id</b><i> (for testing)</i>
<input id="peer_session_id" type="text" class="form-control">
</label>
</div>
<br>
<div class="btns">
<button id="send_message_button" class="btn btn-primary">Send Message</button>
</div>
</div>
</div>
</div>

Expand Down

0 comments on commit dd35fe5

Please sign in to comment.