Skip to content

Commit

Permalink
v3.0.94
Browse files Browse the repository at this point in the history
  • Loading branch information
Alchemist85K committed Feb 14, 2019
1 parent 829e7f8 commit 4c1679e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 21 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

## v3.0.94(FEB 14, 2019)
* Improved stability.
* Minor bug fixed.
* Updated SendBird.d.ts file for TypeScript.

## v3.0.93(JAN 17, 2019)
* Add push trigger option to enable/disable remote push notification.
* Added `setPushTriggerOption(option, callback)` to `SendBird`. It determines whether the current user receives remote push notification in all group channels.
Expand Down
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,12 @@ Check out [Basic Sample with SyncManager](https://github.com/smilefam/SendBird-J

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

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


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

Expand Down
4 changes: 2 additions & 2 deletions SendBird.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Type Definitions for SendBird SDK v3.0.93
* Type Definitions for SendBird SDK v3.0.94
* homepage: https://sendbird.com/
* git: https://github.com/smilefam/SendBird-SDK-JavaScript
*/
Expand Down Expand Up @@ -228,7 +228,7 @@ declare namespace SendBird {
onChannelFrozen(channel: OpenChannel | GroupChannel): void;
onChannelUnfrozen(channel: OpenChannel | GroupChannel): void;
onChannelChanged(channel: OpenChannel | GroupChannel): void;
onChannelDeleted(channelUrl: string): void;
onChannelDeleted(channelUrl: string, channelType: string): void;
onUserReceivedInvitation(channel: GroupChannel, inviter: User, invitees: Array<User>): void;
onUserDeclinedInvitation(channel: GroupChannel, inviter: User, invitee: Member): void;
onMetaDataCreated(channel: OpenChannel | GroupChannel, metaData: Object): void;
Expand Down
16 changes: 8 additions & 8 deletions SendBird.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.0.93",
"version": "3.0.94",
"authors": ["SendBird <[email protected]>"],
"homepage": "https://github.com/smilefam/SendBird-SDK-JavaScript",
"description": "SendBird JavaScript SDK",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.0.93",
"version": "3.0.94",
"description": "SendBird JavaScript SDK",
"main": "SendBird.min.js",
"dependencies": {
Expand Down

0 comments on commit 4c1679e

Please sign in to comment.