Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 5ddeedf

Browse files
author
Chunbo
authored
Merge pull request #146 from jianjunz/4.2.x
Pick some changes from master to 4.2.x
2 parents 64e2aaa + f96f26f commit 5ddeedf

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/jsdoc/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"dateFormat": "ddd MMM Do YYYY",
1818
"outputSourceFiles": false,
1919
"outputSourcePath": false,
20-
"systemName": "Intel® Collaboration Suite for WebRTC version 4.2",
20+
"systemName": "Intel® Collaboration Suite for WebRTC version 4.2.1",
2121
"footer": "",
2222
"copyright": "Copyright © 2019 Intel Corporation. All Rights Reserved.",
2323
"navType": "vertical",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "owt-client-javascript",
33
"title": "Open WebRTC Toolkit JavaScript SDK",
44
"description": "Open WebRTC Toolkit JavaScript SDK",
5-
"version": "4.2.0",
5+
"version": "4.2.1",
66
"homepage": "https://webrtc.intel.com",
77
"author": "Intel WebRTC team",
88
"contributors": [

src/samples/conference/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "oms-sample-conference",
33
"title": "Open WebRTC Toolkit Conference Sample",
44
"description": "Open WebRTC Toolkit JavaScript Conference Sample",
5-
"version": "4.2.0",
5+
"version": "4.2.1",
66
"homepage": "http://webrtc.intel.com",
77
"author": "Intel WebRTC team",
88
"keywords": [

src/samples/p2p/js/sc.websocket.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function SignalingChannel() {
1313
this.onServerDisconnected = null;
1414

1515
var clientType = 'Web';
16-
var clientVersion = '4.2';
16+
var clientVersion = '4.2.1';
1717

1818
var wsServer = null;
1919

src/sdk/base/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* global navigator, window */
66

77
'use strict';
8-
const sdkVersion = '4.2';
8+
const sdkVersion = '4.2.1';
99

1010
// eslint-disable-next-line require-jsdoc
1111
export function isFirefox() {
@@ -120,7 +120,7 @@ export function sysInfo() {
120120
}
121121
info.capabilities = {
122122
continualIceGathering: false,
123-
unifiedPlan: false,
123+
unifiedPlan: true,
124124
streamRemovable: info.runtime.name !== 'Firefox',
125125
};
126126
return info;

0 commit comments

Comments
 (0)