This repository was archived by the owner on Oct 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1919 "outputSourcePath" : false ,
2020 "systemName" : " Open WebRTC Toolkit" ,
2121 "footer" : " " ,
22- "copyright" : " Copyright © 2018 Intel Corporation. All Rights Reserved. " ,
22+ "copyright" : " Copyright © 2019 Intel Corporation. All Rights Reserved. " ,
2323 "navType" : " vertical" ,
2424 "theme" : " cosmo" ,
2525 "linenums" : true ,
Original file line number Diff line number Diff line change 22 "name" : " owt-client-javascript" ,
33 "title" : " Open WebRTC Toolkit JavaScript SDK" ,
44 "description" : " Open WebRTC Toolkit JavaScript SDK" ,
5- "version" : " 4.1 .0" ,
5+ "version" : " 4.2 .0" ,
66 "homepage" : " https://webrtc.intel.com" ,
77 "author" : " Intel WebRTC team" ,
88 "contributors" : [
Original file line number Diff line number Diff line change 22 "name" : " oms-sample-conference" ,
33 "title" : " Open WebRTC Toolkit Conference Sample" ,
44 "description" : " Open WebRTC Toolkit JavaScript Conference Sample" ,
5- "version" : " 4.1 .0" ,
5+ "version" : " 4.2 .0" ,
66 "homepage" : " http://webrtc.intel.com" ,
77 "author" : " Intel WebRTC team" ,
88 "keywords" : [
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function SignalingChannel() {
1313 this . onServerDisconnected = null ;
1414
1515 var clientType = 'Web' ;
16- var clientVersion = '4.1 ' ;
16+ var clientVersion = '4.2 ' ;
1717
1818 var wsServer = null ;
1919
@@ -36,7 +36,7 @@ function SignalingChannel() {
3636 to : targetId
3737 } ;
3838 return new Promise ( ( resolve , reject ) => {
39- wsServer . emit ( 'ics -message' , data , function ( err ) {
39+ wsServer . emit ( 'owt -message' , data , function ( err ) {
4040 if ( err )
4141 reject ( err ) ;
4242 else
@@ -114,7 +114,7 @@ function SignalingChannel() {
114114 }
115115 } ) ;
116116
117- wsServer . on ( 'ics -message' , function ( data ) {
117+ wsServer . on ( 'owt -message' , function ( data ) {
118118 console . info ( 'Received woogeen message.' ) ;
119119 if ( self . onMessage )
120120 self . onMessage ( data . from , data . data ) ;
Original file line number Diff line number Diff line change 55/* global navigator, window */
66
77'use strict' ;
8- const sdkVersion = '4.1 ' ;
8+ const sdkVersion = '4.2 ' ;
99
1010// eslint-disable-next-line require-jsdoc
1111export function isFirefox ( ) {
You can’t perform that action at this time.
0 commit comments