[mirotalksfu] - improve UI, update dep

هذا الالتزام موجود في:
Miroslav Pejic
2025-10-05 22:28:13 +02:00
الأصل 71ed23b0e6
التزام 96036a3c74
7 ملفات معدلة مع 41 إضافات و16 حذوفات

عرض الملف

@@ -64,7 +64,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.9.78
* @version 1.9.79
*
*/

12
package-lock.json مولّد
عرض الملف

@@ -1,12 +1,12 @@
{
"name": "mirotalksfu",
"version": "1.9.78",
"version": "1.9.79",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "mirotalksfu",
"version": "1.9.78",
"version": "1.9.79",
"license": "AGPL-3.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.901.0",
@@ -35,7 +35,7 @@
"jsonwebtoken": "^9.0.2",
"mediasoup": "3.19.3",
"mediasoup-client": "3.16.7",
"nodemailer": "^7.0.6",
"nodemailer": "^7.0.7",
"openai": "^6.1.0",
"qs": "6.14.0",
"sanitize-filename": "^1.6.3",
@@ -8358,9 +8358,9 @@
"license": "MIT"
},
"node_modules/nodemailer": {
"version": "7.0.6",
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-7.0.6.tgz",
"integrity": "sha512-F44uVzgwo49xboqbFgBGkRaiMgtoBrBEWCVincJPK9+S9Adkzt/wXCLKbf7dxucmxfTI5gHGB+bEmdyzN6QKjw==",
"version": "7.0.7",
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-7.0.7.tgz",
"integrity": "sha512-jGOaRznodf62TVzdyhKt/f1Q/c3kYynk8629sgJHpRzGZj01ezbgMMWJSAjHADcwTKxco3B68/R+KHJY2T5BaA==",
"license": "MIT-0",
"engines": {
"node": ">=6.0.0"

عرض الملف

@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
"version": "1.9.78",
"version": "1.9.79",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
@@ -83,7 +83,7 @@
"jsonwebtoken": "^9.0.2",
"mediasoup": "3.19.3",
"mediasoup-client": "3.16.7",
"nodemailer": "^7.0.6",
"nodemailer": "^7.0.7",
"openai": "^6.1.0",
"qs": "6.14.0",
"sanitize-filename": "^1.6.3",

عرض الملف

@@ -284,12 +284,12 @@
.expand-video-content .peer-name {
text-align: center;
font-size: 12px;
font-size: 10px;
font-weight: bold;
color: #fff;
background: var(--body-bg);
border-radius: 10px;
padding: 6px;
padding: 5px;
width: 100%;
}
@@ -315,9 +315,10 @@
padding: 0 10px;
font-size: 15px;
color: #fff;
background: var(--btns-bg-color);
background: #000000;
min-width: 42px;
min-height: 42px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
justify-content: center;
align-items: center;
display: inline-flex; /* center icon + label */
@@ -474,6 +475,12 @@ input[type='range'] {
.expand-video-content {
padding: 10px;
}
.expand-video-content .button-group button {
font-size: 10px;
min-width: 28px;
min-height: 28px;
gap: 1px;
}
}
@container camera (min-width: 261px) and (max-width: 400px) {
@@ -491,6 +498,12 @@ input[type='range'] {
.videoMenuBar input[type='range'] {
width: clamp(30px, 25%, 60px);
}
.expand-video-content .button-group button {
font-size: 15px;
min-width: 36px;
min-height: 36px;
gap: 3px;
}
}
@container camera (min-width: 401px) and (max-width: 640px) {
@@ -508,6 +521,12 @@ input[type='range'] {
.videoMenuBar input[type='range'] {
width: clamp(40px, 20%, 80px);
}
.expand-video-content .button-group button {
font-size: 15px;
min-width: 42px;
min-height: 42px;
gap: 6px;
}
}
@container camera (min-width: 641px) {
@@ -525,4 +544,10 @@ input[type='range'] {
.videoMenuBar input[type='range'] {
width: clamp(50px, 20%, 100px);
}
.expand-video-content .button-group button {
font-size: 15px;
min-width: 42px;
min-height: 42px;
gap: 6px;
}
}

عرض الملف

@@ -78,7 +78,7 @@ let BRAND = {
},
about: {
imageUrl: '../images/mirotalk-logo.gif',
title: '<strong>WebRTC SFU v1.9.78</strong>',
title: '<strong>WebRTC SFU v1.9.79</strong>',
html: `
<button
id="support-button"

عرض الملف

@@ -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.9.78
* @version 1.9.79
*
*/
@@ -5700,7 +5700,7 @@ function showAbout() {
position: 'center',
imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about,
customClass: { image: 'img-about' },
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.9.78',
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.9.79',
html: `
<br />
<div id="about">

عرض الملف

@@ -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.9.78
* @version 1.9.79
*
*/