Skip to content

Commit 0e8b99b

Browse files
[mirotalksfu] - #194 Add default GIF virtual background example
1 parent 18e31a4 commit 0e8b99b

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

app/src/Server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dev dependencies: {
5858
* @license For commercial or closed source, contact us at [email protected] or purchase directly via CodeCanyon
5959
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
6060
* @author Miroslav Pejic - [email protected]
61-
* @version 1.7.47
61+
* @version 1.7.48
6262
*
6363
*/
6464

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalksfu",
3-
"version": "1.7.47",
3+
"version": "1.7.48",
44
"description": "WebRTC SFU browser-based video calls",
55
"main": "Server.js",
66
"scripts": {
Loading

public/js/Brand.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ let BRAND = {
6464
},
6565
about: {
6666
imageUrl: '../images/mirotalk-logo.gif',
67-
title: '<strong>WebRTC SFU v1.7.47</strong>',
67+
title: '<strong>WebRTC SFU v1.7.48</strong>',
6868
html: `
6969
<button
7070
id="support-button"

public/js/Room.js

+2-2
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 [email protected] or purchase directly via CodeCanyon
1212
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
1313
* @author Miroslav Pejic - [email protected]
14-
* @version 1.7.47
14+
* @version 1.7.48
1515
*
1616
*/
1717

@@ -5239,7 +5239,7 @@ function showAbout() {
52395239
position: 'center',
52405240
imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about,
52415241
customClass: { image: 'img-about' },
5242-
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.7.47',
5242+
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.7.48',
52435243
html: `
52445244
<br />
52455245
<div id="about">

public/js/RoomClient.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @license For commercial or closed source, contact us at [email protected] or purchase directly via CodeCanyon
1010
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
1111
* @author Miroslav Pejic - [email protected]
12-
* @version 1.7.47
12+
* @version 1.7.48
1313
*
1414
*/
1515

@@ -129,6 +129,7 @@ const image = {
129129
eight: '../images/virtual-background/background-8.jpg',
130130
nine: '../images/virtual-background/background-9.jpg',
131131
ten: '../images/virtual-background/background-10.jpg',
132+
eleven: '../images/virtual-background/background-11.gif',
132133
},
133134
};
134135

0 commit comments

Comments
 (0)