diff --git a/app/src/server.js b/app/src/server.js index 53ed50f08..3dafa86b8 100755 --- a/app/src/server.js +++ b/app/src/server.js @@ -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.4.39 + * @version 1.4.40 * */ diff --git a/package.json b/package.json index 8f9e796cc..28787ec13 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalk", - "version": "1.4.39", + "version": "1.4.40", "description": "A free WebRTC browser-based video call", "main": "server.js", "scripts": { @@ -59,7 +59,7 @@ "qs": "^6.13.1", "socket.io": "^4.8.1", "swagger-ui-express": "^5.0.1", - "uuid": "11.0.4", + "uuid": "11.0.5", "xss": "^1.0.15" }, "devDependencies": { diff --git a/public/js/client.js b/public/js/client.js index 38b04dd77..99d4bcdbf 100644 --- a/public/js/client.js +++ b/public/js/client.js @@ -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.4.39 + * @version 1.4.40 * */ @@ -9022,6 +9022,9 @@ function handleEmojiSound(message) { case ':ok_hand:': playSound('ok', true, path); break; + case ':-1:': + playSound('boo', true, path); + break; case ':clap:': playSound('applause', true, path); break; @@ -10928,7 +10931,7 @@ function showAbout() { Swal.fire({ background: swBg, position: 'center', - title: 'WebRTC P2P v1.4.39', + title: 'WebRTC P2P v1.4.40', imageAlt: 'mirotalk-about', imageUrl: images.about, customClass: { image: 'img-about' }, diff --git a/public/sounds/emoji/boo.mp3 b/public/sounds/emoji/boo.mp3 new file mode 100644 index 000000000..6ed911411 Binary files /dev/null and b/public/sounds/emoji/boo.mp3 differ