diff --git a/.env.template b/.env.template index cb6f619d..521fb380 100644 --- a/.env.template +++ b/.env.template @@ -1,5 +1,5 @@ # ==================================================== -# MiroTalk P2P v.1.7.59 - Environment Configuration +# MiroTalk P2P v.1.7.60 - Environment Configuration # ==================================================== # App environment diff --git a/app/src/config.template.js b/app/src/config.template.js index 5570ae88..a5afaad8 100644 --- a/app/src/config.template.js +++ b/app/src/config.template.js @@ -2,7 +2,7 @@ /** * ============================================== - * MiroTalk P2P v.1.7.59 - Configuration File + * MiroTalk P2P v.1.7.60 - Configuration File * ============================================== * * This file is the central configuration source. diff --git a/app/src/server.js b/app/src/server.js index 470b4efd..3ed32814 100755 --- a/app/src/server.js +++ b/app/src/server.js @@ -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.7.59 + * @version 1.7.60 * */ diff --git a/package-lock.json b/package-lock.json index 4ef61989..5001818f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mirotalk", - "version": "1.7.59", + "version": "1.7.60", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mirotalk", - "version": "1.7.59", + "version": "1.7.60", "license": "AGPL-3.0", "dependencies": { "@mattermost/client": "11.4.0", @@ -29,7 +29,7 @@ "js-yaml": "^4.1.1", "jsdom": "^29.0.1", "jsonwebtoken": "^9.0.3", - "nodemailer": "^8.0.3", + "nodemailer": "^8.0.4", "openai": "^6.32.0", "qs": "^6.15.0", "socket.io": "^4.8.3", @@ -4793,9 +4793,9 @@ } }, "node_modules/nodemailer": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-8.0.3.tgz", - "integrity": "sha512-JQNBqvK+bj3NMhUFR3wmCl3SYcOeMotDiwDBvIoCuQdF0PvlIY0BH+FJ2CG7u4cXKPChplE78oowlH/Otsc4ZQ==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-8.0.4.tgz", + "integrity": "sha512-k+jf6N8PfQJ0Fe8ZhJlgqU5qJU44Lpvp2yvidH3vp1lPnVQMgi4yEEMPXg5eJS1gFIJTVq1NHBk7Ia9ARdSBdQ==", "license": "MIT-0", "engines": { "node": ">=6.0.0" diff --git a/package.json b/package.json index 5d3ddbef..888a0b09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalk", - "version": "1.7.59", + "version": "1.7.60", "description": "A free WebRTC browser-based video call", "main": "server.js", "scripts": { @@ -62,7 +62,7 @@ "js-yaml": "^4.1.1", "jsdom": "^29.0.1", "jsonwebtoken": "^9.0.3", - "nodemailer": "^8.0.3", + "nodemailer": "^8.0.4", "openai": "^6.32.0", "qs": "^6.15.0", "socket.io": "^4.8.3", diff --git a/public/css/activeRooms.css b/public/css/activeRooms.css index 1229f5cc..70374f7a 100644 --- a/public/css/activeRooms.css +++ b/public/css/activeRooms.css @@ -49,6 +49,13 @@ h1 { outline: none; width: 220px; } +.search-input:-webkit-autofill, +.search-input:-webkit-autofill:hover, +.search-input:-webkit-autofill:focus { + -webkit-box-shadow: 0 0 0 1000px #23262e inset !important; + -webkit-text-fill-color: var(--text) !important; + transition: background-color 5000s ease-in-out 0s; +} .search-btn { padding: 10px 20px; diff --git a/public/css/customizeRoom.css b/public/css/customizeRoom.css index 66c1dbae..ae0fae45 100644 --- a/public/css/customizeRoom.css +++ b/public/css/customizeRoom.css @@ -171,6 +171,13 @@ body::before { .cr-input::placeholder { color: rgba(255, 255, 255, 0.4); } +.cr-input:-webkit-autofill, +.cr-input:-webkit-autofill:hover, +.cr-input:-webkit-autofill:focus { + -webkit-box-shadow: 0 0 0 1000px #06070a inset !important; + -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important; + transition: background-color 5000s ease-in-out 0s; +} .cr-input:focus { border-color: var(--cr-input-border-focus); diff --git a/public/css/login.css b/public/css/login.css index 7f11f1ca..5c3251fe 100644 --- a/public/css/login.css +++ b/public/css/login.css @@ -92,6 +92,13 @@ .login-card .form-input::placeholder { color: #6b7a85; } +.login-card .form-input:-webkit-autofill, +.login-card .form-input:-webkit-autofill:hover, +.login-card .form-input:-webkit-autofill:focus { + -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.06) inset !important; + -webkit-text-fill-color: #f9faff !important; + transition: background-color 5000s ease-in-out 0s; +} /* Input group with icon */ .login-input-group { diff --git a/public/js/brand.js b/public/js/brand.js index 18fa3721..05adefe6 100644 --- a/public/js/brand.js +++ b/public/js/brand.js @@ -107,7 +107,7 @@ let brand = { }, about: { imageUrl: '../images/mirotalk-logo.gif', - title: 'WebRTC P2P v1.7.59', + title: 'WebRTC P2P v1.7.60', html: `