diff --git a/app/src/Server.js b/app/src/Server.js index cae80570..cf977c9a 100644 --- a/app/src/Server.js +++ b/app/src/Server.js @@ -58,7 +58,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.48 + * @version 1.7.49 * */ diff --git a/package.json b/package.json index ea04f08e..e44a63a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalksfu", - "version": "1.7.48", + "version": "1.7.49", "description": "WebRTC SFU browser-based video calls", "main": "Server.js", "scripts": { diff --git a/public/css/Room.css b/public/css/Room.css index c5dcaeef..93c74ba7 100644 --- a/public/css/Room.css +++ b/public/css/Room.css @@ -322,6 +322,28 @@ body { background: var(--body-bg) !important; } +/*-------------------------------------------------------------- +# Error span +--------------------------------------------------------------*/ + +.show-error { + margin-top: 10px !important; + color: red !important; + opacity: 0 !important; + transition: opacity 0.5s ease-in-out !important; + display: none; +} + +.show-error.fade-in { + opacity: 1 !important; + display: block; +} + +.show-error.fade-out { + opacity: 0 !important; + display: none; +} + /*-------------------------------------------------------------- # Buttons bar --------------------------------------------------------------*/ diff --git a/public/js/Brand.js b/public/js/Brand.js index 6972bc0d..cd12bc11 100644 --- a/public/js/Brand.js +++ b/public/js/Brand.js @@ -64,7 +64,7 @@ let BRAND = { }, about: { imageUrl: '../images/mirotalk-logo.gif', - title: 'WebRTC SFU v1.7.48', + title: 'WebRTC SFU v1.7.49', html: ` @@ -423,6 +424,7 @@ access to use this app.

Virtual background:

+