mirror of https://github.com/OpenVidu/openvidu.git
openvidu-browser: dependencies update
parent
76b2895a25
commit
ecb766ae36
|
@ -1,31 +1,31 @@
|
||||||
{
|
{
|
||||||
"author": "OpenVidu",
|
"author": "OpenVidu",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/node": "11.9.4",
|
"@types/node": "11.11.7",
|
||||||
"@types/platform": "1.3.2",
|
"@types/platform": "1.3.2",
|
||||||
"freeice": "2.2.2",
|
"freeice": "2.2.2",
|
||||||
"hark": "1.2.3",
|
"hark": "1.2.3",
|
||||||
"platform": "1.3.5",
|
"platform": "1.3.5",
|
||||||
"uuid": "3.3.2",
|
"uuid": "3.3.2",
|
||||||
"wolfy87-eventemitter": "5.2.5"
|
"wolfy87-eventemitter": "5.2.6"
|
||||||
},
|
},
|
||||||
"description": "OpenVidu Browser",
|
"description": "OpenVidu Browser",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"browserify": "16.2.3",
|
"browserify": "16.2.3",
|
||||||
"grunt": "1.0.3",
|
"grunt": "1.0.4",
|
||||||
"grunt-autoprefixer": "3.0.4",
|
"grunt-autoprefixer": "3.0.4",
|
||||||
"grunt-cli": "1.3.2",
|
"grunt-cli": "1.3.2",
|
||||||
"grunt-contrib-copy": "1.0.0",
|
"grunt-contrib-copy": "1.0.0",
|
||||||
"grunt-contrib-sass": "1.0.0",
|
"grunt-contrib-sass": "1.0.0",
|
||||||
"grunt-contrib-uglify": "4.0.0",
|
"grunt-contrib-uglify": "4.0.1",
|
||||||
"grunt-contrib-watch": "1.1.0",
|
"grunt-contrib-watch": "1.1.0",
|
||||||
"grunt-string-replace": "1.3.1",
|
"grunt-string-replace": "1.3.1",
|
||||||
"grunt-ts": "6.0.0-beta.22",
|
"grunt-ts": "6.0.0-beta.22",
|
||||||
"tsify": "4.0.1",
|
"tsify": "4.0.1",
|
||||||
"tslint": "5.12.1",
|
"tslint": "5.14.0",
|
||||||
"typedoc": "0.14.2",
|
"typedoc": "0.14.2",
|
||||||
"typescript": "3.3.3",
|
"typescript": "3.3.4000",
|
||||||
"uglify-js": "3.4.9"
|
"uglify-js": "3.5.2"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
|
|
@ -376,7 +376,7 @@ export class Stream implements EventDispatcher {
|
||||||
* @hidden
|
* @hidden
|
||||||
*/
|
*/
|
||||||
updateMediaStreamInVideos() {
|
updateMediaStreamInVideos() {
|
||||||
this.ee.emitEvent('mediastream-updated');
|
this.ee.emitEvent('mediastream-updated', []);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -724,7 +724,7 @@ export class Stream implements EventDispatcher {
|
||||||
if (this.displayMyRemote()) {
|
if (this.displayMyRemote()) {
|
||||||
this.remotePeerSuccessfullyEstablished();
|
this.remotePeerSuccessfullyEstablished();
|
||||||
}
|
}
|
||||||
this.ee.emitEvent('stream-created-by-publisher');
|
this.ee.emitEvent('stream-created-by-publisher', []);
|
||||||
this.initWebRtcStats();
|
this.initWebRtcStats();
|
||||||
resolve();
|
resolve();
|
||||||
})
|
})
|
||||||
|
@ -836,7 +836,7 @@ export class Stream implements EventDispatcher {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ee.emitEvent('mediastream-updated');
|
this.ee.emitEvent('mediastream-updated', []);
|
||||||
if (!this.displayMyRemote() && !!this.mediaStream.getAudioTracks()[0] && this.session.speakingEventsEnabled) {
|
if (!this.displayMyRemote() && !!this.mediaStream.getAudioTracks()[0] && this.session.speakingEventsEnabled) {
|
||||||
this.enableSpeakingEvents();
|
this.enableSpeakingEvents();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue