diff --git a/package.json b/package.json index 5b7e5aa6..128ee978 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,7 @@ "mediasoup-client": "3.7.17", "ngrok": "^5.0.0-beta.2", "nodemailer": "^6.9.16", - "openai": "^4.70.2", + "openai": "^4.71.0", "qs": "6.13.0", "socket.io": "4.8.1", "swagger-ui-express": "5.0.1", diff --git a/public/js/Room.js b/public/js/Room.js index f3e22c5b..827ed862 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -386,11 +386,11 @@ function refreshMainButtonsToolTipPlacement() { // Control buttons setTippy('shareButton', 'Share room', placement); + setTippy('hideMeButton', 'Toggle hide self view', placement); setTippy('startRecButton', 'Start recording', placement); setTippy('stopRecButton', 'Stop recording', placement); setTippy('fullScreenButton', 'Toggle full screen', placement); setTippy('emojiRoomButton', 'Toggle emoji reaction', placement); - setTippy('chatButton', 'Toggle the chat', placement); setTippy('pollButton', 'Toggle the poll', placement); setTippy('editorButton', 'Toggle the editor', placement); setTippy('transcriptionButton', 'Toggle transcription', placement); @@ -407,11 +407,11 @@ function refreshMainButtonsToolTipPlacement() { setTippy('startVideoButton', 'Start the video', bPlacement); setTippy('stopVideoButton', 'Stop the video', bPlacement); setTippy('swapCameraButton', 'Swap the camera', bPlacement); - setTippy('hideMeButton', 'Toggle hide self view', bPlacement); setTippy('startScreenButton', 'Start screen share', bPlacement); setTippy('stopScreenButton', 'Stop screen share', bPlacement); setTippy('raiseHandButton', 'Raise your hand', bPlacement); setTippy('lowerHandButton', 'Lower your hand', bPlacement); + setTippy('chatButton', 'Toggle the chat', bPlacement); setTippy('exitButton', 'Leave room', bPlacement); } } diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index 32cd63b4..be583969 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -3005,7 +3005,7 @@ class RoomClient { if (!isBroadcastingEnabled || (isBroadcastingEnabled && isPresenter)) { this.peer_info.peer_video = status; if (!this.peer_info.peer_video) { - console.log('Set video enabled: ' + status); + console.log('Set local video enabled: ' + status); this.setVideoOff(this.peer_info, false); this.sendVideoOff(); } @@ -3016,7 +3016,7 @@ class RoomClient { if (!isBroadcastingEnabled || (isBroadcastingEnabled && isPresenter)) { this.peer_info.peer_screen = status; if (!this.peer_info.peer_screen && !this.peer_info.peer_video) { - console.log('Set screen enabled: ' + status); + console.log('Set local screen enabled: ' + status); this.setVideoOff(this.peer_info, false); this.sendVideoOff(); }