[mirotalk] - fix typo, update dep

This commit is contained in:
Miroslav Pejic
2024-11-18 14:08:38 +01:00
parent ec71386637
commit 5908f021a4
3 changed files with 7 additions and 7 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.92
* @version 1.3.93
*
*/
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.3.92",
"version": "1.3.93",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
@@ -56,7 +56,7 @@
"ngrok": "^5.0.0-beta.2",
"nodemailer": "^6.9.16",
"openai": "^4.72.0",
"qs": "^6.13.0",
"qs": "^6.13.1",
"socket.io": "^4.8.1",
"swagger-ui-express": "^5.0.1",
"uuid": "11.0.3",
+4 -4
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.92
* @version 1.3.93
*
*/
@@ -5822,8 +5822,8 @@ async function getAudioConstraints() {
constraints = {
audio: {
autoGainControl: switchAutoGainControl.checked,
echoCancellation: switchNoiseSuppression.checked,
noiseSuppression: switchEchoCancellation.checked,
echoCancellation: switchEchoCancellation.checked,
noiseSuppression: switchNoiseSuppression.checked,
sampleRate: parseInt(sampleRateSelect.value),
sampleSize: parseInt(sampleSizeSelect.value),
channelCount: parseInt(channelCountSelect.value),
@@ -10598,7 +10598,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: '<strong>WebRTC P2P v1.3.92</strong>',
title: '<strong>WebRTC P2P v1.3.93</strong>',
imageAlt: 'mirotalk-about',
imageUrl: images.about,
customClass: { image: 'img-about' },