[mirotalk] - fix

This commit is contained in:
Miroslav Pejic
2024-09-25 15:02:10 +02:00
parent e979f20070
commit a820943a7c
3 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -39,7 +39,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.3.76
* @version 1.3.77
*
*/
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.3.76",
"version": "1.3.77",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
@@ -41,7 +41,7 @@
"license": "AGPL-3.0",
"homepage": "https://github.com/miroslavpejic85/mirotalk",
"dependencies": {
"@sentry/node": "^8.30.0",
"@sentry/node": "^8.32.0",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"colors": "^1.4.0",
+9 -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.3.76
* @version 1.3.77
*
*/
@@ -4558,7 +4558,13 @@ function setRecordStreamBtn() {
* Full screen button click event
*/
function setFullScreenBtn() {
if (browserName != 'Safari') {
const fsSupported =
document.fullscreenEnabled ||
document.webkitFullscreenEnabled ||
document.mozFullScreenEnabled ||
document.msFullscreenEnabled;
if (fsSupported) {
// detect esc from full screen mode
document.addEventListener('fullscreenchange', (e) => {
let fullscreenElement = document.fullscreenElement;
@@ -10527,7 +10533,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: '<strong>WebRTC P2P v1.3.76</strong>',
title: '<strong>WebRTC P2P v1.3.77</strong>',
imageAlt: 'mirotalk-about',
imageUrl: images.about,
customClass: { image: 'img-about' },