Skip to content

Commit

Permalink
v3.0.17 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sf-jin-ku committed Nov 23, 2016
1 parent ddeca00 commit 3febe20
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 12 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
Changelog
=========
## v3.0.17
### update
* Finally push notifications feature is officially supported in V3 JS SDK.
* Added "setBackgroundState()" and "setForegroundState()".
* Added "messageType" filter to PreviousMessageQueryList.


## v3.0.16
### update
* Intial connection speed has been improved a lot!.
* InItial connection speed has been improved a lot!.
* Auto-Reconnection is now more robust.
* Auto-Translation support has been added.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ SendBird-SDK-JavaScript
# [Documentation](https://docs.sendbird.com/javascript)


## Upgrading to v3.0.16
## Upgrading to v3.0.17
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).
* Intial connection speed has been improved a lot!.
* Auto-Reconnection is now more robust.
* Auto-Translation support has been added.
* Finally push notifications feature is officially supported in V3 JS SDK.
* Added "setBackgroundState()" and "setForegroundState()".
* Added "messageType" filter to PreviousMessageQueryList.


## [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)
Expand Down
4 changes: 4 additions & 0 deletions SendBird.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ interface SendBird_Instance {
unregisterAPNSPushTokenForCurrentUser(apnsRegToken: string, callback?: Function): void;
unregisterAPNSPushTokenAllForCurrentUser(callback: Function): void;

getPendingGCMToken(): string;
getPendingAPNSToken(): string;

setDoNotDisturb(doNotDisturbOn: boolean, startHour: number, startMin: number, endHour: number, endMin: number, timezone: string, callback?: Function): void;
getDoNotDisturb(callback: Function): void;

Expand Down Expand Up @@ -135,6 +138,7 @@ interface MessageListQuery {
interface PreviousMessageListQuery {
hasMore: boolean;
load(limit: number, reverse: boolean, callback: Function): void;
load(limit: number, reverse: boolean, messageType: string, callback: Function): void;
}


Expand Down
10 changes: 5 additions & 5 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.16",
"version": "3.0.17",
"authors": [
"SendBird <[email protected]>"
],
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.16",
"version": "3.0.17",
"description": "SendBird JavaScript SDK",
"main": "SendBird.min.js",
"dependencies": {
Expand Down

0 comments on commit 3febe20

Please sign in to comment.