Skip to content

Commit e6c844b

Browse files
committed
1.0.2
1 parent e43bfe5 commit e6c844b

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Change Log
2+
### 1.0.2 (May 1, 2020)
3+
* Below methods are added in `SendBirdCall`
4+
* `setRingingTimeout(timeout: int): void`
5+
* Optimized video call frame rate.
6+
* Improved stability.
27
### 1.0.1 (Mar 25, 2020)
38
* Bug fix
49
* Fixed the bug that `onRemoteVideoSettingsChanged` doesn't fire.

SendBirdCall.min.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** 1.0.1 */
1+
/** 1.0.2 */
22

33
export as namespace SendBirdCall;
44

@@ -26,6 +26,7 @@ export function updateCustomItems(callId: string, customItems: CustomItems, call
2626
export function deleteCustomItems(callId: string, customItemKeys: string[], callback?: CustomItemsHandler): Promise<CustomItemsResult>;
2727
export function deleteAllCustomItems(callId: string, callback?: CustomItemsHandler): Promise<CustomItemsResult>;
2828
export function setLoggerLevel(level: LoggerLevel);
29+
export function setRingingTimeout(timeout: int);
2930
export function getCall(callId: string): DirectCall;
3031
export const sdkVersion: string;
3132
export const appId: string;

SendBirdCall.min.js

Lines changed: 2 additions & 2 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-calls",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-calls",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "SendBird Calls JavaScript SDK",
55
"main": "SendBirdCall.min.js",
66
"types": "SendBirdCall.min.d.ts",

0 commit comments

Comments
 (0)