Skip to content

Commit

Permalink
v1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
shisoAqron committed Sep 29, 2023
1 parent c4073d2 commit d839bc0
Show file tree
Hide file tree
Showing 37 changed files with 239 additions and 188 deletions.
74 changes: 37 additions & 37 deletions THIRD_PARTY_LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@skyway-sdk/common@1.4.2
@skyway-sdk/common@1.4.3

MIT

Expand Down Expand Up @@ -29,7 +29,7 @@ SOFTWARE.

---

@skyway-sdk/core@1.5.2
@skyway-sdk/core@1.5.3

MIT

Expand Down Expand Up @@ -68,7 +68,7 @@ MIT

---

@skyway-sdk/room@1.5.3
@skyway-sdk/room@1.5.4

MIT

Expand Down Expand Up @@ -99,7 +99,7 @@ SOFTWARE.

---

@skyway-sdk/rtc-api-client@1.4.2
@skyway-sdk/rtc-api-client@1.4.3

MIT

Expand Down Expand Up @@ -130,7 +130,7 @@ SOFTWARE.

---

@skyway-sdk/rtc-rpc-api-client@1.4.2
@skyway-sdk/rtc-rpc-api-client@1.4.3

MIT

Expand Down Expand Up @@ -161,7 +161,7 @@ SOFTWARE.

---

@skyway-sdk/sfu-api-client@1.4.2
@skyway-sdk/sfu-api-client@1.4.3

MIT

Expand Down Expand Up @@ -192,7 +192,7 @@ SOFTWARE.

---

@skyway-sdk/sfu-bot@1.5.2
@skyway-sdk/sfu-bot@1.5.3

MIT

Expand Down Expand Up @@ -223,7 +223,7 @@ SOFTWARE.

---

@skyway-sdk/signaling-client@1.0.1
@skyway-sdk/signaling-client@1.0.2

MIT

Expand Down Expand Up @@ -254,7 +254,7 @@ SOFTWARE.

---

@skyway-sdk/token@1.4.2
@skyway-sdk/token@1.4.3

MIT

Expand Down Expand Up @@ -285,7 +285,7 @@ SOFTWARE.

---

@types/debug@4.1.8
@types/debug@4.1.9

MIT

Expand Down Expand Up @@ -316,33 +316,33 @@ https://github.com/DefinitelyTyped/DefinitelyTyped

---

@types/ms@0.7.31
@types/ms@0.7.32

MIT

https://github.com/DefinitelyTyped/DefinitelyTyped

MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
MIT License

Copyright (c) Microsoft Corporation.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE


---
Expand Down Expand Up @@ -560,7 +560,7 @@ https://github.com/ibc/fake-mediastreamtrack

---

follow-redirects@1.15.2
follow-redirects@1.15.3

MIT

Expand Down Expand Up @@ -953,15 +953,15 @@ SOFTWARE.

---

ua-parser-js@1.0.35
ua-parser-js@1.0.36

MIT

https://github.com/faisalman/ua-parser-js

MIT License

Copyright (c) 2012-2021 Faisal Salman <<f@faisalman.com>>
Copyright (c) 2012-2023 Faisal Salman <<f@faisalman.com>>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -1025,7 +1025,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND

---

whatwg-fetch@3.6.18
whatwg-fetch@3.6.19

MIT

Expand Down Expand Up @@ -1094,7 +1094,7 @@ SOFTWARE.

---

ws@8.14.0
ws@8.14.2

MIT

Expand Down
4 changes: 2 additions & 2 deletions examples/auto-subscribe/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const token = new SkyWayAuthToken({
},
}).encode(secret);

(async () => {
void (async () => {
const localVideo = document.getElementById(
'js-local-stream'
) as HTMLVideoElement;
Expand Down Expand Up @@ -174,7 +174,7 @@ const token = new SkyWayAuthToken({
disposeVideoElement(element as HTMLVideoElement);
});
messages.textContent += '== You left ===\n';
room.dispose();
void room.dispose();
room = undefined;
});

Expand Down
2 changes: 1 addition & 1 deletion examples/core/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const token = new SkyWayAuthToken({
},
}).encode(secret);

(async () => {
void (async () => {
const localVideo = document.getElementById('local-video') as HTMLVideoElement;
const buttonArea = document.getElementById('button-area');
const remoteMediaArea = document.getElementById('remote-media-area');
Expand Down
2 changes: 1 addition & 1 deletion examples/p2p-room/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const token = new SkyWayAuthToken({
},
}).encode(secret);

(async () => {
void (async () => {
const localVideo = document.getElementById('local-video') as HTMLVideoElement;
const buttonArea = document.getElementById('button-area');
const remoteMediaArea = document.getElementById('remote-media-area');
Expand Down
2 changes: 1 addition & 1 deletion examples/sfu-bot/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const token = new SkyWayAuthToken({
},
}).encode(secret);

(async () => {
void (async () => {
const localVideo = document.getElementById('local-video') as HTMLVideoElement;
const buttonArea = document.getElementById('button-area');
const remoteMediaArea = document.getElementById('remote-media-area');
Expand Down
2 changes: 1 addition & 1 deletion examples/sfu-room/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const token = new SkyWayAuthToken({
},
}).encode(secret);

(async () => {
void (async () => {
const localVideo = document.getElementById('local-video') as HTMLVideoElement;
const buttonArea = document.getElementById('button-area');
const remoteMediaArea = document.getElementById('remote-media-area');
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const token = new SkyWayAuthToken({
},
}).encode(secret);

(async () => {
void (async () => {
const localVideo = document.getElementById('local-video') as HTMLVideoElement;
const buttonArea = document.getElementById('button-area');
const remoteMediaArea = document.getElementById('remote-media-area');
Expand Down

0 comments on commit d839bc0

Please sign in to comment.