Skip to content

Commit a0f1f1a

Browse files
committed
v3.0.26 release
1 parent d208cb2 commit a0f1f1a

File tree

6 files changed

+15
-13
lines changed

6 files changed

+15
-13
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Changelog
22
=========
3+
## v3.0.26
4+
* Added getTotalUnreadChannelCount
5+
* Now markAsRead doesn't have any delays
6+
37
## v3.0.25
48
* Now GroupChannelList returns correct readstatus as well.
59
* Member nickname/profile get updated when new messages arrived.

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ SendBird-SDK-JavaScript
2727
# [Documentation](https://docs.sendbird.com/javascript)
2828

2929

30-
## Upgrading to v3.0.25
30+
## Upgrading to v3.0.26
3131
If you want to check the record of other version, go to [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
3232
n/access control.
33-
* Now GroupChannelList returns correct readstatus as well.
34-
* Member nickname/profile get updated when new messages arrived.
35-
* Return more consistent errors when connection() is not made before calling methods.
36-
* Now we don't count senders in readreceipt.
33+
* Added getTotalUnreadChannelCount
34+
* Now markAsRead doesn't have any delays
3735

3836

3937
## [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)

SendBird.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ interface GroupChannel extends BaseChannel {
333333

334334
hide(callback: Function): void;
335335
leave(callback: Function): void;
336-
markAsRead(): void;
337336

338337
getReadReceipt(message: UserMessage): number;
339338
updateReadReceipt(userId: string, timestamp: number): void;
@@ -343,6 +342,7 @@ interface GroupChannel extends BaseChannel {
343342
isTyping(): boolean;
344343
getTypingMembers(): [number, User];
345344
getTotalUnreadMessageCount(callback: Function): void;
345+
getTotalUnreadChannelCount(callback: Function): void;
346346

347347
isDistinct: boolean;
348348
unreadMessageCount: number;

SendBird.min.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.25",
3+
"version": "3.0.26",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.25",
3+
"version": "3.0.26",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)