Skip to content

Commit b658b55

Browse files
[mirotalksfu] - fix typo, update dep
1 parent 94dda11 commit b658b55

File tree

9 files changed

+65
-66
lines changed

9 files changed

+65
-66
lines changed

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# git folder
2-
**/.git
32
.git
43
.gitignore
54

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ====================================================
2-
# MiroTalk SFU v.2.0.51 - Environment Configuration
2+
# MiroTalk SFU v.2.0.52 - Environment Configuration
33
# ====================================================
44

55
# config.js - Main configuration with:

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 2.0.51
67+
* @version 2.0.52
6868
*
6969
*/
7070

app/src/config.template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* ==============================================
5-
* MiroTalk SFU v2.0.51 - Configuration File
5+
* MiroTalk SFU v2.0.52 - Configuration File
66
* ==============================================
77
*
88
* This file contains all configurable settings for the MiroTalk SFU application.

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalksfu",
3-
"version": "2.0.51",
3+
"version": "2.0.52",
44
"description": "WebRTC SFU browser-based video calls",
55
"main": "Server.js",
66
"scripts": {
@@ -57,8 +57,8 @@
5757
"node": ">=22"
5858
},
5959
"dependencies": {
60-
"@aws-sdk/client-s3": "^3.947.0",
61-
"@aws-sdk/lib-storage": "^3.947.0",
60+
"@aws-sdk/client-s3": "^3.948.0",
61+
"@aws-sdk/lib-storage": "^3.948.0",
6262
"@mattermost/client": "11.1.0",
6363
"@ngrok/ngrok": "1.6.0",
6464
"@sentry/node": "^10.29.0",

public/js/Brand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ let BRAND = {
8080
},
8181
about: {
8282
imageUrl: '../images/mirotalk-logo.gif',
83-
title: '<strong>WebRTC SFU v2.0.51</strong>',
83+
title: '<strong>WebRTC SFU v2.0.52</strong>',
8484
html: `
8585
<button
8686
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 2.0.51
14+
* @version 2.0.52
1515
*
1616
*/
1717

@@ -6279,7 +6279,7 @@ function showAbout() {
62796279
position: 'center',
62806280
imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about,
62816281
customClass: { image: 'img-about' },
6282-
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v2.0.51',
6282+
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v2.0.52',
62836283
html: `
62846284
<br />
62856285
<div id="about">

public/js/RoomClient.js

Lines changed: 1 addition & 1 deletion
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 2.0.51
12+
* @version 2.0.52
1313
*
1414
*/
1515

0 commit comments

Comments
 (0)