diff --git a/app/src/Server.js b/app/src/Server.js index 545de522..884965aa 100644 --- a/app/src/Server.js +++ b/app/src/Server.js @@ -55,7 +55,7 @@ dev dependencies: { * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.7.08 + * @version 1.7.09 * */ @@ -124,6 +124,7 @@ const corsOptions = { }; const server = httpolyglot.createServer(options, app); + const io = socketIo(server, { maxHttpBufferSize: 1e7, transports: ['websocket'], diff --git a/package.json b/package.json index 0267c894..c0174c1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalksfu", - "version": "1.7.08", + "version": "1.7.09", "description": "WebRTC SFU browser-based video calls", "main": "Server.js", "scripts": { @@ -58,7 +58,7 @@ }, "dependencies": { "@mattermost/client": "10.2.0", - "@sentry/node": "^8.50.0", + "@sentry/node": "^8.51.0", "axios": "^1.7.9", "colors": "1.4.0", "compression": "1.7.5", @@ -78,14 +78,14 @@ "mediasoup-client": "3.8.1", "ngrok": "^5.0.0-beta.2", "nodemailer": "^6.9.16", - "openai": "^4.79.1", + "openai": "^4.80.0", "qs": "6.14.0", "socket.io": "4.8.1", "swagger-ui-express": "5.0.1", "uuid": "11.0.5" }, "devDependencies": { - "mocha": "^11.0.1", + "mocha": "^11.1.0", "node-fetch": "^3.3.2", "nodemon": "^3.1.9", "prettier": "3.4.2", diff --git a/public/js/Room.js b/public/js/Room.js index 7e7d440a..97e7c55d 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.7.08 + * @version 1.7.09 * */ @@ -4904,7 +4904,7 @@ function showAbout() { imageUrl: image.about, customClass: { image: 'img-about' }, position: 'center', - title: 'WebRTC SFU v1.7.08', + title: 'WebRTC SFU v1.7.09', html: `
diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index 7d07b6a3..5606f6f4 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -9,7 +9,7 @@ * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.7.08 + * @version 1.7.09 * */