Skip to content

Commit e2936bd

Browse files
committed
v3.0.16
1 parent d84fa32 commit e2936bd

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Changelog
22
=========
3+
## v3.0.16
4+
### update
5+
* Intial connection speed has been improved a lot!.
6+
* Auto-Reconnection is now more robust.
7+
* Auto-Translation support has been added.
8+
39
## v3.0.15
410
### update
511
* Fixed a bug that created non-integer file size field.

README.md

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

2929

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

3436

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

SendBird.d.ts

+8-3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ interface BaseChannel {
164164
sendUserMessage(message: string, callback: Function): void;
165165
sendUserMessage(message: string, data: string, callback: Function): void;
166166
sendUserMessage(message: string, data: string, customType: string, callback: Function): void;
167+
sendUserMessage(message: string, data: string, customType: string, targetLanguages: [string], callback: Function): void;
167168

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

277278
interface GroupChannel extends BaseChannel {
278279
createChannel(users: [User], isDistinct: boolean, callback: Function): void;
279-
createChannel(users: [User], isDistinct: boolean, name: string, coverUrl: string, data: any, callback: Function): void;
280-
280+
createChannel(users: [User], isDistinct: boolean, callback: Function): void;
281+
createChannelWithUserIds(userIds: [string], isDistinct: boolean, name: string, coverUrl: string, data: any, callback: Function): void;
282+
createChannelWithUserIds(userIds: [string], isDistinct: boolean, name: string, coverImageFile: Object, data: any, callback: Function): void;
283+
284+
getChannel(channelUrl: string, callback: Function): void;
285+
281286
markAsRead(): void;
282287
markAsReadAll(callback: Function): void;
283288

@@ -313,4 +318,4 @@ interface GroupChannel extends BaseChannel {
313318
getReadStatus(): Object;
314319
}
315320

316-
declare var SendBird: SendBirdFactory;
321+
declare var SendBird: SendBirdFactory;

SendBird.min.js

+5-4
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.15",
3+
"version": "3.0.16",
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.15",
3+
"version": "3.0.16",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)