Skip to content

Commit f6b2c42

Browse files
committed
version 3.0.13 release
1 parent 90d7422 commit f6b2c42

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG.md

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

4+
## v3.0.13
5+
### update
6+
* Fixed a reconnection bug happening after calling disconnect() and connect() in serial.
7+
* Added "custom_type" field to message/file object.
8+
* Added "user_id"/"nickanme" filters to GroupChannelList.
9+
410
## v3.0.12
511
### update
612
* Fixed wrong message_id, data field of FileMessage object.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ SendBird-SDK-JavaScript
2929

3030
## Upgrading to v3.0.12
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 wrong message_id, data field of FileMessage object.
32+
* Fixed a reconnection bug happening after calling disconnect() and connect() in serial.
33+
* Added "custom_type" field to message/file object.
34+
* Added "user_id"/"nickanme" filters to GroupChannelList.
3335

3436

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

SendBird.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,13 @@ interface BaseChannel {
157157
/* SendMessage */
158158
sendFileMessage(file: any, callback: Function): void;
159159
sendFileMessage(file: any, data: string, callback: Function): void;
160+
sendFileMessage(file: any, data: string, customType: string, callback: Function): void;
160161
sendFileMessage(file: any, name: string, type: string, size: number, data: string, callback: Function): void;
162+
sendFileMessage(file: any, name: string, type: string, size: number, data: string, customType: string, callback: Function): void;
161163

162164
sendUserMessage(message: string, callback: Function): void;
163165
sendUserMessage(message: string, data: string, callback: Function): void;
166+
sendUserMessage(message: string, data: string, customType: string, callback: Function): void;
164167

165168
/* MetaCounter */
166169
createMetaCounters(metaCounterMap: Object, callback: Function): void;
@@ -310,4 +313,4 @@ interface GroupChannel extends BaseChannel {
310313
getReadStatus(): Object;
311314
}
312315

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

SendBird.min.js

Lines changed: 4 additions & 4 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.12",
3+
"version": "3.0.13",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

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

0 commit comments

Comments
 (0)