webrtc-adapter
Advanced tools
Comparing version 2.0.4 to 2.0.5
{ | ||
"name": "webrtc-adapter", | ||
"version": "2.0.4", | ||
"version": "2.0.5", | ||
"description": "A shim to insulate apps from WebRTC spec changes and browser prefix differences", | ||
@@ -31,2 +31,3 @@ "license": "BSD-3-Clause", | ||
"faucet": "0.0.1", | ||
"geckodriver": "^1.1.3", | ||
"grunt": "^0.4.5", | ||
@@ -39,3 +40,3 @@ "grunt-browserify": "^4.0.1", | ||
"grunt-githooks": "^0.3.1", | ||
"selenium-webdriver": "^2.52.0", | ||
"selenium-webdriver": "^3.0.0-beta-3", | ||
"tape": "^4.0.0", | ||
@@ -42,0 +43,0 @@ "travis-multirunner": "^3.0.1" |
@@ -365,2 +365,9 @@ /* | ||
if (recv && transceiver.rtpReceiver) { | ||
// remove RTX field in Edge 14942 | ||
if (transceiver.kind === 'video' | ||
&& transceiver.recvEncodingParameters) { | ||
transceiver.recvEncodingParameters.forEach(function(p) { | ||
delete p.rtx; | ||
}); | ||
} | ||
params.encodings = transceiver.recvEncodingParameters; | ||
@@ -367,0 +374,0 @@ params.rtcp = { |
@@ -82,3 +82,3 @@ /* | ||
// Only enable this for Chrome >= 49. | ||
if (process.env.BROWSER === 'chrome' && getBrowserVersion >= '49') { | ||
if (process.env.BROWSER === 'chrome' && getBrowserVersion >= 49) { | ||
chromeOptions.addArguments('--enable-experimental-web-platform-features'); | ||
@@ -102,2 +102,4 @@ } | ||
} | ||
} else if (process.env.BROWSER === 'firefox' && getBrowserVersion >= 47) { | ||
sharedDriver.getCapabilities().set('marionette', true); | ||
} | ||
@@ -104,0 +106,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
431361
11063
14
44