@flashphoner/websdk 2.0.215 → 2.0.216
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docTemplate/README.md +1 -1
- package/flashphoner-no-flash.js +4 -1
- package/flashphoner-no-flash.min.js +2 -2
- package/flashphoner-no-webrtc.js +4 -1
- package/flashphoner-no-webrtc.min.js +2 -2
- package/flashphoner-no-wsplayer.js +4 -1
- package/flashphoner-no-wsplayer.min.js +2 -2
- package/flashphoner-room-api.js +4 -1
- package/flashphoner-room-api.min.js +2 -2
- package/flashphoner-temasys-flash-websocket-without-adapterjs.js +4 -1
- package/flashphoner-temasys-flash-websocket.js +4 -1
- package/flashphoner-temasys-flash-websocket.min.js +1 -1
- package/flashphoner-webrtc-only.js +4 -1
- package/flashphoner-webrtc-only.min.js +1 -1
- package/flashphoner.js +4 -1
- package/flashphoner.min.js +2 -2
- package/package.json +1 -1
- package/src/flashphoner-core.js +1 -1
- package/src/util.js +3 -0
package/package.json
CHANGED
package/src/flashphoner-core.js
CHANGED
|
@@ -561,7 +561,7 @@ var createSession = function (options) {
|
|
|
561
561
|
mediaProviders: Object.keys(MediaProvider),
|
|
562
562
|
keepAlive: keepAlive,
|
|
563
563
|
authToken:authToken,
|
|
564
|
-
clientVersion: "2.0.
|
|
564
|
+
clientVersion: "2.0.216",
|
|
565
565
|
clientOSVersion: window.navigator.appVersion,
|
|
566
566
|
clientBrowserVersion: window.navigator.userAgent,
|
|
567
567
|
msePacketizationVersion: 2,
|
package/src/util.js
CHANGED
|
@@ -115,6 +115,9 @@ const Browser = {
|
|
|
115
115
|
},
|
|
116
116
|
isAndroidFirefox: function () {
|
|
117
117
|
return this.isAndroid() && /Firefox/i.test(navigator.userAgent);
|
|
118
|
+
},
|
|
119
|
+
isChromiumEdge: function () {
|
|
120
|
+
return /Chrome/i.test(navigator.userAgent) && /Edg/i.test(navigator.userAgent);
|
|
118
121
|
}
|
|
119
122
|
};
|
|
120
123
|
|