Skip to content

Commit fcd54ea

Browse files
committed
1.10.2
1 parent 117c279 commit fcd54ea

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
### 1.10.2 (Feb 14, 2023 UTC)
4+
* Added room event listeners to detect local user’s connection with the server.
5+
* Added `localParticipantDisconnected`, `localParticipantReconnected` in `RoomEventMap`.
6+
* Improved the reconnection logic for short-term disconnection in `Room`.
7+
38
### 1.10.1 (Feb 3, 2023 UTC)
49
* Fixed the bug that the client with only one of audio/video permission can't use the allowed device in video call/room.
510
* Now, the client can use the microphone in video call/room regardless of camera permission.

SendBirdCall.min.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** 1.10.1 */
1+
/** 1.10.2 */
22
// eslint-disable-next-line no-undef,max-classes-per-file
33
export as namespace SendBirdCall;
44

@@ -485,6 +485,8 @@ declare type RoomEventMap = {
485485
remoteParticipantStreamStarted: { args: [RemoteParticipant]; };
486486
remoteAudioSettingsChanged: { args: [RemoteParticipant]; };
487487
remoteVideoSettingsChanged: { args: [RemoteParticipant]; };
488+
localParticipantDisconnected: { args: [LocalParticipant]; };
489+
localParticipantReconnected: { args: [LocalParticipant]; };
488490
customItemsUpdated: { args: [CustomItems, string[]] };
489491
customItemsDeleted: { args: [CustomItems, string[]] };
490492
invitationDeclined: { args: [RoomInvitation] };

SendBirdCall.min.js

Lines changed: 16 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-calls",
3-
"version": "1.10.1",
3+
"version": "1.10.2",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-calls",
3-
"version": "1.10.1",
3+
"version": "1.10.2",
44
"description": "SendBird Calls JavaScript SDK",
55
"main": "SendBirdCall.min.js",
66
"types": "SendBirdCall.min.d.ts",

0 commit comments

Comments
 (0)