Skip to content

Commit

Permalink
v3.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
sf-jin-ku committed Nov 22, 2016
1 parent d84fa32 commit e2936bd
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Changelog
=========
## v3.0.16
### update
* Intial connection speed has been improved a lot!.
* Auto-Reconnection is now more robust.
* Auto-Translation support has been added.

## v3.0.15
### update
* Fixed a bug that created non-integer file size field.
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ SendBird-SDK-JavaScript
# [Documentation](https://docs.sendbird.com/javascript)


## Upgrading to v3.0.15
## Upgrading to v3.0.16
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).
* Fixed a bug that created non-integer file size field.
* Intial connection speed has been improved a lot!.
* Auto-Reconnection is now more robust.
* Auto-Translation support has been added.


## [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)
Expand Down
11 changes: 8 additions & 3 deletions SendBird.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ interface BaseChannel {
sendUserMessage(message: string, callback: Function): void;
sendUserMessage(message: string, data: string, callback: Function): void;
sendUserMessage(message: string, data: string, customType: string, callback: Function): void;
sendUserMessage(message: string, data: string, customType: string, targetLanguages: [string], callback: Function): void;

/* MetaCounter */
createMetaCounters(metaCounterMap: Object, callback: Function): void;
Expand Down Expand Up @@ -276,8 +277,12 @@ interface GroupChannelListQuery {

interface GroupChannel extends BaseChannel {
createChannel(users: [User], isDistinct: boolean, callback: Function): void;
createChannel(users: [User], isDistinct: boolean, name: string, coverUrl: string, data: any, callback: Function): void;

createChannel(users: [User], isDistinct: boolean, callback: Function): void;
createChannelWithUserIds(userIds: [string], isDistinct: boolean, name: string, coverUrl: string, data: any, callback: Function): void;
createChannelWithUserIds(userIds: [string], isDistinct: boolean, name: string, coverImageFile: Object, data: any, callback: Function): void;

getChannel(channelUrl: string, callback: Function): void;

markAsRead(): void;
markAsReadAll(callback: Function): void;

Expand Down Expand Up @@ -313,4 +318,4 @@ interface GroupChannel extends BaseChannel {
getReadStatus(): Object;
}

declare var SendBird: SendBirdFactory;
declare var SendBird: SendBirdFactory;
9 changes: 5 additions & 4 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.15",
"version": "3.0.16",
"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.15",
"version": "3.0.16",
"description": "SendBird JavaScript SDK",
"main": "SendBird.min.js",
"dependencies": {
Expand Down

0 comments on commit e2936bd

Please sign in to comment.