Skip to content

Commit 4c1679e

Browse files
committed
v3.0.94
1 parent 829e7f8 commit 4c1679e

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
## v3.0.94(FEB 14, 2019)
5+
* Improved stability.
6+
* Minor bug fixed.
7+
* Updated SendBird.d.ts file for TypeScript.
8+
49
## v3.0.93(JAN 17, 2019)
510
* Add push trigger option to enable/disable remote push notification.
611
* Added `setPushTriggerOption(option, callback)` to `SendBird`. It determines whether the current user receives remote push notification in all group channels.

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,12 @@ Check out [Basic Sample with SyncManager](https://github.com/smilefam/SendBird-J
4848

4949
# [Documentation](https://docs.sendbird.com/javascript)
5050

51-
## v3.0.93(JAN 17, 2019)
51+
## v3.0.94(FEB 14, 2019)
5252
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).
53-
* Add push trigger option to enable/disable remote push notification.
54-
* Added `setPushTriggerOption(option, callback)` to `SendBird`. It determines whether the current user receives remote push notification in all group channels.
55-
* Added `getPushTriggerOption(callback)` to `SendBird`. It returns the current push trigger option setting for all group channels.
56-
* Added `setMyPushTriggerOption(option, callback)` to `GroupChannel`. It determines whether the current user receives remote push notification in the group channel.
57-
* Added `getMyPushTriggerOption(callback)` to `GroupChannel`. It returns the current push trigger option setting for the group channel.
58-
* Snooze or stop snooze remote push notification in specific duration.
59-
* Added `setSnoozePeriod(snoozeOn, startTs, endTs, callback)` into `SendBird`. It enables or disables snooze in the period.
60-
* Added `getSnoozePeriod(callback)` into `SendBird`. It returns the current snooze setting for the current user.
53+
* Improved stability.
54+
* Minor bug fixed.
55+
* Updated SendBird.d.ts file for TypeScript.
56+
6157

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

SendBird.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.93
2+
* Type Definitions for SendBird SDK v3.0.94
33
* homepage: https://sendbird.com/
44
* git: https://github.com/smilefam/SendBird-SDK-JavaScript
55
*/
@@ -228,7 +228,7 @@ declare namespace SendBird {
228228
onChannelFrozen(channel: OpenChannel | GroupChannel): void;
229229
onChannelUnfrozen(channel: OpenChannel | GroupChannel): void;
230230
onChannelChanged(channel: OpenChannel | GroupChannel): void;
231-
onChannelDeleted(channelUrl: string): void;
231+
onChannelDeleted(channelUrl: string, channelType: string): void;
232232
onUserReceivedInvitation(channel: GroupChannel, inviter: User, invitees: Array<User>): void;
233233
onUserDeclinedInvitation(channel: GroupChannel, inviter: User, invitee: Member): void;
234234
onMetaDataCreated(channel: OpenChannel | GroupChannel, metaData: Object): void;

SendBird.min.js

Lines changed: 8 additions & 8 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",
3-
"version": "3.0.93",
3+
"version": "3.0.94",
44
"authors": ["SendBird <[email protected]>"],
55
"homepage": "https://github.com/smilefam/SendBird-SDK-JavaScript",
66
"description": "SendBird JavaScript SDK",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.93",
3+
"version": "3.0.94",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)