[mirotalk] - responsive badge, update dep

This commit is contained in:
Miroslav Pejic
2025-11-27 15:57:06 +01:00
parent f138091d29
commit 99e05d6109
10 changed files with 58 additions and 22 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# ====================================================
# MiroTalk P2P v.1.6.52 - Environment Configuration
# MiroTalk P2P v.1.6.53 - Environment Configuration
# ====================================================
# App environment
+1 -1
View File
@@ -2,7 +2,7 @@
/**
* ==============================================
* MiroTalk P2P v.1.6.52 - Configuration File
* MiroTalk P2P v.1.6.53 - Configuration File
* ==============================================
*
* Branding and customizations require a license:
+1 -1
View File
@@ -45,7 +45,7 @@ dependencies: {
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.6.52
* @version 1.6.53
*
*/
+6 -6
View File
@@ -1,12 +1,12 @@
{
"name": "mirotalk",
"version": "1.6.52",
"version": "1.6.53",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "mirotalk",
"version": "1.6.52",
"version": "1.6.53",
"license": "AGPL-3.0",
"dependencies": {
"@mattermost/client": "11.1.0",
@@ -40,7 +40,7 @@
"mocha": "^11.7.5",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.11",
"prettier": "3.6.2",
"prettier": "3.7.1",
"proxyquire": "^2.1.3",
"should": "^13.2.3",
"sinon": "^21.0.0"
@@ -5288,9 +5288,9 @@
}
},
"node_modules/prettier": {
"version": "3.6.2",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
"integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
"version": "3.7.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.1.tgz",
"integrity": "sha512-RWKXE4qB3u5Z6yz7omJkjWwmTfLdcbv44jUVHC5NpfXwFGzvpQM798FGv/6WNK879tc+Cn0AAyherCl1KjbyZQ==",
"dev": true,
"license": "MIT",
"bin": {
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.6.52",
"version": "1.6.53",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
@@ -72,7 +72,7 @@
"mocha": "^11.7.5",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.11",
"prettier": "3.6.2",
"prettier": "3.7.1",
"proxyquire": "^2.1.3",
"should": "^13.2.3",
"sinon": "^21.0.0"
+30 -5
View File
@@ -336,19 +336,44 @@ body {
position: absolute;
top: 2px;
right: 2px;
min-width: 18px;
height: 18px;
min-width: 16px;
height: 16px;
background: #e74c3c;
color: #fff;
border-radius: 9px;
font-size: 12px;
border-radius: 8px;
font-size: 11px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 5px;
padding: 0 0.4em;
pointer-events: none;
z-index: 2;
display: none;
box-sizing: border-box;
transition:
font-size 0.2s,
min-width 0.2s,
height 0.2s;
}
@media (max-width: 600px) {
#participantsCountBadge {
font-size: 12px;
min-width: 15px;
height: 15px;
top: 1px;
right: 1px;
}
}
@media (max-width: 400px) {
#participantsCountBadge {
font-size: 13px;
min-width: 14px;
height: 14px;
top: 0px;
right: 0px;
}
}
/*--------------------------------------------------------------
+1 -1
View File
@@ -77,7 +77,7 @@ let brand = {
},
about: {
imageUrl: '../images/mirotalk-logo.gif',
title: 'WebRTC P2P v1.6.52',
title: 'WebRTC P2P v1.6.53',
html: `
<button
id="support-button"
+5 -3
View File
@@ -15,7 +15,7 @@
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.6.52
* @version 1.6.53
*
*/
@@ -5613,7 +5613,9 @@ function setParticipantsBtn() {
elemDisplay(msgerCP, true, 'flex');
}
isParticipantsVisible = !isParticipantsVisible;
screenReaderAccessibility.announceMessage(isParticipantsVisible ? 'Participants panel opened' : 'Participants panel closed');
screenReaderAccessibility.announceMessage(
isParticipantsVisible ? 'Participants panel opened' : 'Participants panel closed'
);
});
}
@@ -12425,7 +12427,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.6.52',
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.6.53',
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
customClass: { image: 'img-about' },
html: `
+1 -1
View File
@@ -66,7 +66,7 @@
<div class="reveal-from-bottom" data-reveal-delay="450">
<button
class="button button-custom button-wide-mobile br-6 pulse"
onclick="window.location.href = '/';"
onclick="window.location.href = '/'"
>
Go to Homepage
</button>
+10 -1
View File
@@ -9,7 +9,16 @@
<body>
<iframe
id="mirotalkIframe"
allow="camera; microphone; display-capture; fullscreen; clipboard-read; clipboard-write; web-share; autoplay"
allow="
camera;
microphone;
display-capture;
fullscreen;
clipboard-read;
clipboard-write;
web-share;
autoplay;
"
src="https://p2p.mirotalk.com/newcall"
style="height: 100vh; width: 100vw; border: 0px"
></iframe>