From 3a9b5bee3f59efb020449358c6c5393cc8283089 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Fri, 26 Jul 2024 18:10:32 +0200 Subject: [PATCH] [mirotalkc2c] - add filter on video hover, update dep --- backend/server.js | 2 +- frontend/css/client.css | 5 +++++ frontend/js/client.js | 2 +- package.json | 10 +++++----- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/backend/server.js b/backend/server.js index 9ff0861..4f77f00 100644 --- a/backend/server.js +++ b/backend/server.js @@ -9,7 +9,7 @@ * @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon: * @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.1.21 + * @version 1.1.22 */ require('dotenv').config(); diff --git a/frontend/css/client.css b/frontend/css/client.css index 85210f5..90c3516 100644 --- a/frontend/css/client.css +++ b/frontend/css/client.css @@ -274,6 +274,11 @@ video { height: 100%; border-radius: var(--border-radius); object-fit: cover; + cursor: pointer; +} + +video:hover { + filter: contrast(105%); } video:fullscreen { diff --git a/frontend/js/client.js b/frontend/js/client.js index 71ff5b5..a9bcaab 100644 --- a/frontend/js/client.js +++ b/frontend/js/client.js @@ -9,7 +9,7 @@ * @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon: * @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.1.21 + * @version 1.1.22 */ const roomId = new URLSearchParams(window.location.search).get('room'); diff --git a/package.json b/package.json index fdebc7d..5c0c982 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalkc2c", - "version": "1.1.21", + "version": "1.1.22", "description": "A free WebRTC Cam-2-Cam browser-based video calls", "main": "server.js", "scripts": { @@ -44,15 +44,15 @@ "express-openid-connect": "^2.17.1", "js-yaml": "^4.1.0", "ngrok": "^5.0.0-beta.2", - "nodemailer": "^6.9.13", + "nodemailer": "^6.9.14", "socket.io": "^4.7.5", "swagger-ui-express": "5.0.1", - "uuid": "9.0.1", + "uuid": "10.0.0", "xss": "^1.0.15" }, "devDependencies": { "node-fetch": "^3.3.2", - "nodemon": "^3.1.3", - "prettier": "3.3.1" + "nodemon": "^3.1.4", + "prettier": "3.3.3" } }