Skip to content

Commit 1c9fb4a

Browse files
committed
v3.0.104
1 parent a076a58 commit 1c9fb4a

File tree

6 files changed

+25
-15
lines changed

6 files changed

+25
-15
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Changelog
22
=========
33

4+
## v3.0.104(JUN 22, 2019)
5+
* Improved stability.
6+
47
## v3.0.103(JUN 14, 2019)
58
* Improved stability.
69

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Check out [Basic Sample with SyncManager](https://github.com/sendbird/SendBird-J
4848

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

51-
## v3.0.103(JUN 14, 2019)
51+
## v3.0.104(JUN 22, 2019)
5252
If you want to check the record of other version, go to [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
5353
* Improved stability.
5454

SendBird.d.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.103
2+
* Type Definitions for SendBird SDK v3.0.104
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/SendBird-SDK-JavaScript
55
*/
@@ -82,7 +82,7 @@ declare namespace SendBird {
8282
connect(userId: string, accessToken: string, callback?: userCallback): void;
8383
connect(userId: string, accessToken: string, apiHost: string, wsHost: string, callback?: userCallback): void;
8484
disconnect(callback?: commonCallback): void;
85-
reconnect(): boolean; // You can reinitate auto-reconnect manually.
85+
reconnect(): boolean; // You can initiate auto-reconnect manually.
8686

8787
updateCurrentUserInfo(nickname: string, profileUrl: string, callback?: userCallback): void;
8888
updateCurrentUserInfoWithProfileImage(nickname: string, profileImageFile: File, callback?: userCallback): void;
@@ -1369,6 +1369,7 @@ declare namespace SendBird {
13691369
metadataOrderKeyFilter: string;
13701370
hiddenChannelFilter: 'unhidden_only' | 'hidden_only' | 'hidden_allow_auto_unhide' | 'hidden_prevent_auto_unhide'
13711371

1372+
setSearchFilter(fields: Array<string>, queryString: string): void;
13721373
serialize(): object;
13731374
next(callback: groupChannelListQueryCallback): void;
13741375
}

SendBird.min.js

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.103",
3+
"version": "3.0.104",
44
"authors": ["SendBird <[email protected]>"],
55
"homepage": "https://github.com/sendbird/SendBird-SDK-JavaScript",
66
"description": "SendBird JavaScript SDK",
@@ -9,4 +9,4 @@
99
"keywords": ["sendbird", "sendbird.com", "messaging", "chat", "js"],
1010
"license": "LICENSE.md",
1111
"ignore": ["package.json"]
12-
}
12+
}

package.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.103",
3+
"version": "3.0.104",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {
@@ -15,12 +15,18 @@
1515
"type": "git",
1616
"url": "https://github.com/sendbird/SendBird-SDK-JavaScript"
1717
},
18-
"keywords": ["sendbird", "sendbird.com", "messaging", "chat", "js"],
18+
"keywords": [
19+
"sendbird",
20+
"sendbird.com",
21+
"messaging",
22+
"chat",
23+
"js"
24+
],
1925
"author": "SendBird <[email protected]>",
2026
"license": "SEE LICENSE IN LICENSE.md",
2127
"bugs": {
2228
"url": "https://github.com/sendbird/SendBird-SDK-JavaScript/issues"
2329
},
2430
"homepage": "https://sendbird.com",
2531
"typings": "SendBird.d.ts"
26-
}
32+
}

0 commit comments

Comments
 (0)