From bbc8ec379683b27b5a5b59c69c977c251a9ecd8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20Davidovi=C4=87?= <62179680+sd4v1d@users.noreply.github.com> Date: Tue, 7 Apr 2020 15:34:26 +0200 Subject: [PATCH 01/14] Update Croatian translation development branch --- app/src/translations/hr.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/app/src/translations/hr.json b/app/src/translations/hr.json index 5f0d6a6..f2b00f2 100644 --- a/app/src/translations/hr.json +++ b/app/src/translations/hr.json @@ -6,7 +6,7 @@ "room.chooseRoom": "Izaberite ime sobe u koju se želite prijaviti", "room.cookieConsent": "Ova stranica koristi kolačiće radi poboljšanja korisničkog iskustva", - "room.consentUnderstand": "I understand", + "room.consentUnderstand": "Razumijem", "room.joined": "Prijavljeni ste u sobu", "room.cantJoin": "Prijava u sobu nije moguća", "room.youLocked": "Zaključali ste sobu", @@ -16,9 +16,9 @@ "room.locked": "Soba je sada zaključana", "room.unlocked": "Soba je sada otključana", "room.newLobbyPeer": "U predvorju je novi učesnik", - "room.lobbyPeerLeft": "Učesnik je napustio predvorje", - "room.lobbyPeerChangedDisplayName": "Učesnik u predvorju je promijenio ime u {displayName}", - "room.lobbyPeerChangedPicture": "Učesnik u predvorju je promijenio sliku", + "room.lobbyPeerLeft": "Sudionik je napustio predvorje", + "room.lobbyPeerChangedDisplayName": "Sudionik u predvorju je promijenio ime u {displayName}", + "room.lobbyPeerChangedPicture": "Sudionik u predvorju je promijenio sliku", "room.setAccessCode": "Obnovljena pristupna šifra za sobu", "room.accessCodeOn": "Pristupna šifra sobe je aktivna", "room.accessCodeOff":"Pristupna šifra sobe je neaktivna", @@ -42,19 +42,19 @@ "room.emptyRequireLogin": "Soba je trenutno prazna! Prijavite se za pokretanje sastanka, ili sačekajte organizatora" , "room.locketWait": "Soba je zaključana - pričekajte odobrenje ...", "room.lobbyAdministration":"Upravljanje predvorjem", - "room.peersInLobby":"Učesnici u predvorju", + "room.peersInLobby":"Sudionici u predvorju", "room.lobbyEmpty": "Trenutno nema nikoga u predvorju", "room.hiddenPeers": "{hiddenPeersCount, plural, one {participant} other {participants}}", "room.me": "Ja", - "room.spotlights": "Učesnici u fokusu", + "room.spotlights": "Sudionici u fokusu", "room.passive": "Pasivni učesnici", "room.videoPaused": "Video pauziran", - "room.muteAll": null, - "room.stopAllVideo": null, - "room.closeMeeting": null, - "room.speechUnsupported": null, + "room.muteAll": "Utišaj sve", + "room.stopAllVideo": "Ugasi sve kamere", + "room.closeMeeting": "Završi sastanak", + "room.speechUnsupported": "Vaš preglednik ne podržava prepoznavanje govora", - "me.mutedPTT": null, + "me.mutedPTT": "Utišani ste, pritisnite i držite SPACE tipku za razgovor ", "tooltip.login": "Prijava", "tooltip.logout": "Odjava", @@ -66,7 +66,7 @@ "tooltip.lobby": "Prikaži predvorje", "tooltip.settings": "Prikaži postavke", "tooltip.participants": "Pokažite sudionike", - "tooltip.kickParticipant": null, + "tooltip.kickParticipant": "Izbaci sudionika", "label.roomName": "Naziv sobe", "label.chooseRoomButton": "Nastavi", @@ -78,7 +78,7 @@ "label.chatInput":"Uđi u razgovor porukama", "label.chat": "Razgovor", "label.filesharing": "Dijeljenje datoteka", - "label.participants": "Učesnici", + "label.participants": "Sudionici", "label.shareFile": "Dijeli datoteku", "label.fileSharingUnsupported": "Dijeljenje datoteka nije podržano", "label.unknown": "Nepoznato", From 0077c459e2df66e499eb3320525fbed4a1e5f3c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Thu, 9 Apr 2020 18:58:44 +0200 Subject: [PATCH 02/14] Fix if displayName is null --- app/src/components/Selectors.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/Selectors.js b/app/src/components/Selectors.js index 34bb647..a87ce16 100644 --- a/app/src/components/Selectors.js +++ b/app/src/components/Selectors.js @@ -82,7 +82,7 @@ export const spotlightSortedPeersSelector = createSelector( spotlightsSelector, peersValueSelector, (spotlights, peers) => peers.filter((peer) => spotlights.includes(peer.id)) - .sort((a, b) => a.displayName.localeCompare(b.displayName)) + .sort((a, b) => String(a.displayName || '').localeCompare(String(b.displayName || ''))) ); export const peersLengthSelector = createSelector( @@ -94,7 +94,7 @@ export const passivePeersSelector = createSelector( peersValueSelector, spotlightsSelector, (peers, spotlights) => peers.filter((peer) => !spotlights.includes(peer.id)) - .sort((a, b) => a.displayName.localeCompare(b.displayName)) + .sort((a, b) => String(a.displayName || '').localeCompare(String(b.displayName || ''))) ); export const videoBoxesSelector = createSelector( From 6267f808db176d41e2574f094c08026f659e66ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Thu, 9 Apr 2020 19:09:14 +0200 Subject: [PATCH 03/14] Lint --- app/src/RoomClient.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js index 747401b..1f47fd3 100644 --- a/app/src/RoomClient.js +++ b/app/src/RoomClient.js @@ -1136,7 +1136,8 @@ export default class RoomClient } }); - if(stream){ + if (stream) + { const track = stream.getVideoTracks()[0]; if (track) @@ -1155,8 +1156,7 @@ export default class RoomClient } }); } - - + store.dispatch( producerActions.setProducerTrack(this._webcamProducer.id, track)); } From 11441ca8ca6f9a048c39f85c6c68c54558325eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20Davidovi=C4=87?= <62179680+sd4v1d@users.noreply.github.com> Date: Thu, 9 Apr 2020 21:59:44 +0200 Subject: [PATCH 04/14] Croatian translation update Terminology and syntax update in development branch --- app/src/translations/hr.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/translations/hr.json b/app/src/translations/hr.json index f2b00f2..120b1a5 100644 --- a/app/src/translations/hr.json +++ b/app/src/translations/hr.json @@ -15,7 +15,7 @@ "room.cantUnLock": "Otključavanje sobe nije moguće", "room.locked": "Soba je sada zaključana", "room.unlocked": "Soba je sada otključana", - "room.newLobbyPeer": "U predvorju je novi učesnik", + "room.newLobbyPeer": "Novi sudionik čeka u predvorju", "room.lobbyPeerLeft": "Sudionik je napustio predvorje", "room.lobbyPeerChangedDisplayName": "Sudionik u predvorju je promijenio ime u {displayName}", "room.lobbyPeerChangedPicture": "Sudionik u predvorju je promijenio sliku", @@ -40,21 +40,21 @@ "room.audioVideo": "Zvuk i slika", "room.youAreReady": "Spremni ste", "room.emptyRequireLogin": "Soba je trenutno prazna! Prijavite se za pokretanje sastanka, ili sačekajte organizatora" , - "room.locketWait": "Soba je zaključana - pričekajte odobrenje ...", + "room.locketWait": "Soba je zaključana - pričekajte odobrenje...", "room.lobbyAdministration":"Upravljanje predvorjem", "room.peersInLobby":"Sudionici u predvorju", "room.lobbyEmpty": "Trenutno nema nikoga u predvorju", "room.hiddenPeers": "{hiddenPeersCount, plural, one {participant} other {participants}}", "room.me": "Ja", "room.spotlights": "Sudionici u fokusu", - "room.passive": "Pasivni učesnici", + "room.passive": "Pasivni sudionici", "room.videoPaused": "Video pauziran", "room.muteAll": "Utišaj sve", "room.stopAllVideo": "Ugasi sve kamere", "room.closeMeeting": "Završi sastanak", "room.speechUnsupported": "Vaš preglednik ne podržava prepoznavanje govora", - "me.mutedPTT": "Utišani ste, pritisnite i držite SPACE tipku za razgovor ", + "me.mutedPTT": "Utišani ste, pritisnite i držite SPACE tipku za razgovor", "tooltip.login": "Prijava", "tooltip.logout": "Odjava", From 3cf0f9d3e7138aec2c6a199903ceb428186cc885 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 9 Apr 2020 17:33:47 +0200 Subject: [PATCH 05/14] Fix typos --- HAproxy.md | 2 +- LTI/LTI.md | 4 ++-- README.md | 6 +++--- app/src/RoomClient.js | 22 +++++++++++----------- app/src/reducers/lobbyPeers.js | 2 +- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/HAproxy.md b/HAproxy.md index 095a6bf..b738097 100644 --- a/HAproxy.md +++ b/HAproxy.md @@ -83,7 +83,7 @@ trustProxy : ['192.0.2.5'], ## Deploy HA proxy -* Configure cerificate / letsencrypt for `meet.example.com` +* Configure certificate / letsencrypt for `meet.example.com` * In this example we put a complete chain and private key in /root/certificate.pem. * Install and setup haproxy diff --git a/LTI/LTI.md b/LTI/LTI.md index ff6b9ec..15b6e6e 100644 --- a/LTI/LTI.md +++ b/LTI/LTI.md @@ -2,7 +2,7 @@ ## LTI -Read more about IMS Global defined interface for tools like our VideoConference system integration with Learning Managment Systems(LMS) (e.g. moodle). +Read more about IMS Global defined interface for tools like our VideoConference system integration with Learning Management Systems(LMS) (e.g. moodle). See: [IMS Global Learning Tool Interoperability](https://www.imsglobal.org/activity/learning-tools-interoperability) We implemented LTI interface version 1.0/1.1 @@ -57,5 +57,5 @@ Open fully the settings **Click on show more!!** ## moodle plugin -Alternativly you can use multipartymeeting moodle plugin: +Alternatively you can use multipartymeeting moodle plugin: [https://github.com/misi/moodle-mod_multipartymeeting](https://github.com/misi/moodle-mod_multipartymeeting) diff --git a/README.md b/README.md index 0a47de2..9f9aa0a 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ $ npm install $ cd server $ npm start ``` -* Note: Do not run the server as root. If you need to use port 80/443 make a iptables-mapping for that or use systemd configuration for that (see futher down this doc). +* Note: Do not run the server as root. If you need to use port 80/443 make a iptables-mapping for that or use systemd configuration for that (see further down this doc). * Test your service in a webRTC enabled browser: `https://yourDomainOrIPAdress:3443/roomname` ## Deploy it in a server @@ -102,7 +102,7 @@ $ systemctl enable multiparty-meeting ## Ports and firewall * 3443/tcp (default https webserver and signaling - adjustable in `server/config.js`) -* 4443/tcp (default `npm start` port for developing with live browser reload, not needed in production enviroments - adjustable in app/package.json) +* 4443/tcp (default `npm start` port for developing with live browser reload, not needed in production environments - adjustable in app/package.json) * 40000-49999/udp/tcp (media ports - adjustable in `server/config.js`) ## Load balanced installation @@ -113,7 +113,7 @@ To integrate with an LMS (e.g. Moodle), have a look at [LTI](LTI/LTI.md). ## TURN configuration -* You need an addtional [TURN](https://github.com/coturn/coturn)-server for clients located behind restrictive firewalls! Add your server and credentials to `app/config.js` +* You need an additional [TURN](https://github.com/coturn/coturn)-server for clients located behind restrictive firewalls! Add your server and credentials to `app/config.js` ## Authors diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js index 1f47fd3..ad3bc5f 100644 --- a/app/src/RoomClient.js +++ b/app/src/RoomClient.js @@ -151,7 +151,7 @@ export default class RoomClient // Whether we should produce. this._produce = produce; - // Wheter we force TCP + // Whether we force TCP this._forceTcp = forceTcp; // Use displayName @@ -282,7 +282,7 @@ export default class RoomClient _startKeyListener() { - // Add keypress event listner on document + // Add keypress event listener on document document.addEventListener('keydown', (event) => { if (event.repeat) return; @@ -626,7 +626,7 @@ export default class RoomClient type : 'error', text : intl.formatMessage({ id : 'room.changeDisplayNameError', - defaultMessage : 'An error occured while changing your display name' + defaultMessage : 'An error occurred while changing your display name' }) })); } @@ -1065,7 +1065,7 @@ export default class RoomClient { // The exact formula to convert from dBs (-100..0) to linear (0..1) is: // Math.pow(10, dBs / 20) - // However it does not produce a visually useful output, so let exagerate + // However it does not produce a visually useful output, so let exaggerate // it a bit. Also, let convert it from 0..1 to 0..10 and avoid value 1 to // minimize component renderings. let volume = Math.round(Math.pow(10, dBs / 85) * 10); @@ -1840,7 +1840,7 @@ export default class RoomClient { // The exact formula to convert from dBs (-100..0) to linear (0..1) is: // Math.pow(10, dBs / 20) - // However it does not produce a visually useful output, so let exagerate + // However it does not produce a visually useful output, so let exaggerate // it a bit. Also, let convert it from 0..1 to 0..10 and avoid value 1 to // minimize component renderings. let volume = Math.round(Math.pow(10, dBs / 85) * 10); @@ -2628,7 +2628,7 @@ export default class RoomClient this.updateSpotlights(spotlights); }); - // Don't produce if explicitely requested to not to do it. + // Don't produce if explicitly requested to not to do it. if (this._produce) { if (this._mediasoupDevice.canProduce('audio')) @@ -2645,7 +2645,7 @@ export default class RoomClient store.dispatch(roomActions.setRoomState('connected')); - // Clean all the existing notifcations. + // Clean all the existing notifications. store.dispatch(notificationActions.removeAllNotifications()); this.getServerHistory(); @@ -2912,7 +2912,7 @@ export default class RoomClient { // The exact formula to convert from dBs (-100..0) to linear (0..1) is: // Math.pow(10, dBs / 20) - // However it does not produce a visually useful output, so let exagerate + // However it does not produce a visually useful output, so let exaggerate // it a bit. Also, let convert it from 0..1 to 0..10 and avoid value 1 to // minimize component renderings. let volume = Math.round(Math.pow(10, dBs / 85) * 10); @@ -2947,7 +2947,7 @@ export default class RoomClient type : 'error', text : intl.formatMessage({ id : 'devices.microphoneError', - defaultMessage : 'An error occured while accessing your microphone' + defaultMessage : 'An error occurred while accessing your microphone' }) })); @@ -3114,7 +3114,7 @@ export default class RoomClient type : 'error', text : intl.formatMessage({ id : 'devices.screenSharingError', - defaultMessage : 'An error occured while accessing your screen' + defaultMessage : 'An error occurred while accessing your screen' }) })); @@ -3287,7 +3287,7 @@ export default class RoomClient type : 'error', text : intl.formatMessage({ id : 'devices.cameraError', - defaultMessage : 'An error occured while accessing your camera' + defaultMessage : 'An error occurred while accessing your camera' }) })); diff --git a/app/src/reducers/lobbyPeers.js b/app/src/reducers/lobbyPeers.js index fef9190..4cf9cc1 100644 --- a/app/src/reducers/lobbyPeers.js +++ b/app/src/reducers/lobbyPeers.js @@ -44,7 +44,7 @@ const lobbyPeers = (state = {}, action) => if (!oldLobbyPeer) { - // Tried to update non-existant lobbyPeer. Has probably been promoted, or left. + // Tried to update non-existent lobbyPeer. Has probably been promoted, or left. return state; } From 36fab6c57237eb2cf9f4e7b3663967f075207ad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Mon, 13 Apr 2020 22:47:09 +0200 Subject: [PATCH 06/14] set in enable AV device constraint to ideal instead of exact --- app/src/RoomClient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js index ad3bc5f..a05a5c7 100644 --- a/app/src/RoomClient.js +++ b/app/src/RoomClient.js @@ -2834,7 +2834,7 @@ export default class RoomClient const stream = await navigator.mediaDevices.getUserMedia( { audio : { - deviceId : { exact: deviceId } + deviceId : { ideal: deviceId } } } ); @@ -3192,7 +3192,7 @@ export default class RoomClient { video : { - deviceId : { exact: deviceId }, + deviceId : { ideal: deviceId }, ...VIDEO_CONSTRAINS[resolution] } }); From 4a085945322259bf40d3bd2794e9fa8237a11486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Tue, 14 Apr 2020 13:44:28 +0200 Subject: [PATCH 07/14] move tokenset_claims to userinfo --- server/server.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/server/server.js b/server/server.js index 70cb5bc..e174c86 100755 --- a/server/server.js +++ b/server/server.js @@ -255,12 +255,15 @@ function setupOIDC(oidcIssuer) { client: oidcClient, params, passReqToCallback, usePKCE }, (tokenset, userinfo, done) => { + if (userinfo && tokenset) { + userinfo._tokenset_claims = tokenset.claims(); + } + const user = { id : tokenset.claims.sub, provider : tokenset.claims.iss, - _userinfo : userinfo, - _claims : tokenset.claims + _userinfo : userinfo }; return done(null, user); From 14ed627ca31d9d3e1f984b3aacfe2834e53dc3c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Tue, 14 Apr 2020 13:45:24 +0200 Subject: [PATCH 08/14] move lti claims to userinfo --- server/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/server.js b/server/server.js index e174c86..9b1b0a3 100755 --- a/server/server.js +++ b/server/server.js @@ -199,7 +199,7 @@ function setupLTI(ltiConfig) if (lti.user_id && lti.custom_room) { user.id = lti.user_id; - user._lti = lti; + user._userinfo = { "lti" : lti }; } if (lti.custom_room) From f9e3f9b62295179ba6dbcfcf7c6106659e554cea Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Tue, 14 Apr 2020 20:57:09 +0200 Subject: [PATCH 09/14] Fix typos --- app/src/RoomClient.js | 4 ++++ app/src/__tests__/RoomClient.spec.js | 2 +- munin/mm-plugin | 2 +- server/config/config.example.js | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js index a05a5c7..5d816c6 100644 --- a/app/src/RoomClient.js +++ b/app/src/RoomClient.js @@ -283,7 +283,11 @@ export default class RoomClient _startKeyListener() { // Add keypress event listener on document +<<<<<<< HEAD document.addEventListener('keydown', (event) => +======= + document.addEventListener('keypress', (event) => +>>>>>>> 250679c... Fix typos { if (event.repeat) return; const key = String.fromCharCode(event.which); diff --git a/app/src/__tests__/RoomClient.spec.js b/app/src/__tests__/RoomClient.spec.js index 086e6a5..5e1191c 100644 --- a/app/src/__tests__/RoomClient.spec.js +++ b/app/src/__tests__/RoomClient.spec.js @@ -1,6 +1,6 @@ import RoomClient from '../RoomClient'; -describe('new RoomClient() without paramaters throws Error', () => +describe('new RoomClient() without parameters throws Error', () => { test('Matches the snapshot', () => { diff --git a/munin/mm-plugin b/munin/mm-plugin index d319ad1..978995b 100755 --- a/munin/mm-plugin +++ b/munin/mm-plugin @@ -42,7 +42,7 @@ fi if [ "$1" = "config" ]; then echo 'graph_title MM stats' #echo 'graph_args --base 1000 -l 0' - echo 'graph_vlabel Actual Seesion Count' + echo 'graph_vlabel Actual Session Count' echo 'graph_category other' echo 'graph_info This graph shows the mm stats.' echo 'rooms.label rooms' diff --git a/server/config/config.example.js b/server/config/config.example.js index ada1553..72403d7 100644 --- a/server/config/config.example.js +++ b/server/config/config.example.js @@ -59,7 +59,7 @@ module.exports = key : `${__dirname}/../certs/mediasoup-demo.localhost.key.pem` }, // listening Host or IP - // If ommitted listens on every IP. ("0.0.0.0" and "::") + // If omitted listens on every IP. ("0.0.0.0" and "::") //listeningHost: 'localhost', // Listening port for https server. listeningPort : 443, From 8ac9bf1d9cd13a57660efbf92dc6c857e50468fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Wed, 15 Apr 2020 11:02:41 +0200 Subject: [PATCH 10/14] Fix comment --- app/src/RoomClient.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js index 5d816c6..8d0e01f 100644 --- a/app/src/RoomClient.js +++ b/app/src/RoomClient.js @@ -282,12 +282,8 @@ export default class RoomClient _startKeyListener() { - // Add keypress event listener on document -<<<<<<< HEAD + // Add keydown event listener on document document.addEventListener('keydown', (event) => -======= - document.addEventListener('keypress', (event) => ->>>>>>> 250679c... Fix typos { if (event.repeat) return; const key = String.fromCharCode(event.which); From 5a9fc063bf70c00d88b60cb39b5f70faac7fa495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Wed, 15 Apr 2020 08:18:03 +0200 Subject: [PATCH 11/14] Move params to config --- server/config/config.example.js | 7 +++++++ server/lib/Room.js | 5 +---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/server/config/config.example.js b/server/config/config.example.js index 72403d7..32ca836 100644 --- a/server/config/config.example.js +++ b/server/config/config.example.js @@ -38,6 +38,13 @@ module.exports = // URI and key for requesting geoip-based TURN server closest to the client turnAPIKey : 'examplekey', turnAPIURI : 'https://example.com/api/turn', + turnAPIparams : { + 'uri_schema' : 'turn', + 'transport' : 'tcp', + 'ip_ver' : 'ipv4', + 'servercount' : '2' + }, + // Backup turnservers if REST fails or is not configured backupTurnServers : [ { diff --git a/server/lib/Room.js b/server/lib/Room.js index f75ec29..b436671 100644 --- a/server/lib/Room.js +++ b/server/lib/Room.js @@ -383,10 +383,7 @@ class Room extends EventEmitter config.turnAPIURI, { params : { - 'uri_schema' : 'turn', - 'transport' : 'tcp', - 'ip_ver' : 'ipv4', - 'servercount' : '2', + ...config.turnAPIparams, 'api_key' : config.turnAPIKey, 'ip' : peer.socket.request.connection.remoteAddress } From da429cf1b50732b9d227e9e9d15f41987ca2dd39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Thu, 16 Apr 2020 22:32:34 +0200 Subject: [PATCH 12/14] Lowercase room name in url path --- app/src/components/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/App.js b/app/src/components/App.js index 0b6b473..6d98847 100644 --- a/app/src/components/App.js +++ b/app/src/components/App.js @@ -14,7 +14,7 @@ const App = (props) => room } = props; - const { id } = useParams(); + const id = useParams().id.toLowerCase(); useEffect(() => { From f254440600151631fa7ab91bd61f524c46cdaeb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Fri, 17 Apr 2020 10:12:01 +0200 Subject: [PATCH 13/14] Update node version to 13.x --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f9aa0a..de7fb96 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ If you want the ansible approach, you can find ansible role [here](https://githu ## Manual installation * Prerequisites: -Currently multiparty-meeting will only run on nodejs v10.* +Currently multiparty-meeting will only run on nodejs v13.x To install see here [here](https://github.com/nodesource/distributions/blob/master/README.md#debinstall). ```bash From bb9c07de3bad1f220e93b0e1548c34b6d24af0b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Fri, 17 Apr 2020 13:34:17 +0200 Subject: [PATCH 14/14] Update 3.4.1 --- app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/package.json b/app/package.json index d68f4f3..fc6c575 100644 --- a/app/package.json +++ b/app/package.json @@ -29,7 +29,7 @@ "react-intl": "^3.4.0", "react-redux": "^7.1.1", "react-router-dom": "^5.1.2", - "react-scripts": "3.0.1", + "react-scripts": "3.4.1", "react-wakelock-react16": "0.0.7", "redux": "^4.0.4", "redux-logger": "^3.0.6",