Skip to content

Commit af94719

Browse files
[mirotalksfu] - fix typo, update dep
1 parent eb60034 commit af94719

File tree

6 files changed

+114
-114
lines changed

6 files changed

+114
-114
lines changed

app/src/Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dev dependencies: {
6464
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
6565
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
6666
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
67-
* @version 1.9.90
67+
* @version 1.9.91
6868
*
6969
*/
7070

package-lock.json

Lines changed: 101 additions & 101 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalksfu",
3-
"version": "1.9.90",
3+
"version": "1.9.91",
44
"description": "WebRTC SFU browser-based video calls",
55
"main": "Server.js",
66
"scripts": {
@@ -57,19 +57,19 @@
5757
"node": ">=22"
5858
},
5959
"dependencies": {
60-
"@aws-sdk/client-s3": "^3.916.0",
61-
"@aws-sdk/lib-storage": "^3.916.0",
60+
"@aws-sdk/client-s3": "^3.919.0",
61+
"@aws-sdk/lib-storage": "^3.919.0",
6262
"@mattermost/client": "10.12.0",
6363
"@ngrok/ngrok": "1.5.2",
64-
"@sentry/node": "^10.21.0",
64+
"@sentry/node": "^10.22.0",
6565
"async-mutex": "^0.5.0",
66-
"axios": "^1.12.2",
66+
"axios": "^1.13.1",
6767
"chokidar": "^4.0.3",
6868
"colors": "1.4.0",
6969
"compression": "1.8.1",
7070
"cors": "2.8.5",
7171
"crypto-js": "4.2.0",
72-
"discord.js": "^14.23.2",
72+
"discord.js": "^14.24.1",
7373
"dompurify": "^3.3.0",
7474
"dotenv": "^17.2.3",
7575
"express": "5.1.0",
@@ -84,7 +84,7 @@
8484
"mediasoup": "3.19.6",
8585
"mediasoup-client": "3.17.1",
8686
"nodemailer": "^7.0.10",
87-
"openai": "^6.6.0",
87+
"openai": "^6.7.0",
8888
"qs": "6.14.0",
8989
"sanitize-filename": "^1.6.3",
9090
"socket.io": "4.8.1",

public/js/Brand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ let BRAND = {
7878
},
7979
about: {
8080
imageUrl: '../images/mirotalk-logo.gif',
81-
title: '<strong>WebRTC SFU v1.9.90</strong>',
81+
title: '<strong>WebRTC SFU v1.9.91</strong>',
8282
html: `
8383
<button
8484
id="support-button"

public/js/Room.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
1111
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
1212
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
1313
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
14-
* @version 1.9.90
14+
* @version 1.9.91
1515
*
1616
*/
1717

@@ -5722,7 +5722,7 @@ function showAbout() {
57225722
position: 'center',
57235723
imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about,
57245724
customClass: { image: 'img-about' },
5725-
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.9.90',
5725+
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.9.91',
57265726
html: `
57275727
<br />
57285728
<div id="about">

public/js/RoomClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
1010
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
1111
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12-
* @version 1.9.90
12+
* @version 1.9.91
1313
*
1414
*/
1515

@@ -3665,7 +3665,7 @@ class RoomClient {
36653665
// Defer until a user gesture if needed
36663666
if (!this.hasUserActivation()) {
36673667
this.pendingSinkId = sinkId;
3668-
this.userLog('info', 'Click once to apply the selected speaker', 'top-end', 3000);
3668+
console.warn('Click once to apply the selected speaker');
36693669
this.runOnNextUserActivation(() => {
36703670
const els = audioElement ? [audioElement] : this.remoteAudioEl.querySelectorAll('audio');
36713671
els.forEach((el) => this.attachSinkId(el, this.pendingSinkId));

0 commit comments

Comments
 (0)