[mirotalk] - fix typo, update dep
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
# ====================================================
|
||||
# MiroTalk P2P v.1.8.14 - Environment Configuration
|
||||
# MiroTalk P2P v.1.8.15 - Environment Configuration
|
||||
# ====================================================
|
||||
|
||||
# App environment
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
/**
|
||||
* ==============================================
|
||||
* MiroTalk P2P v.1.8.14 - Configuration File
|
||||
* MiroTalk P2P v.1.8.15 - Configuration File
|
||||
* ==============================================
|
||||
*
|
||||
* This file is the central configuration source.
|
||||
|
||||
+1
-1
@@ -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.8.14
|
||||
* @version 1.8.15
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
Generated
+6
-6
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "mirotalk",
|
||||
"version": "1.8.14",
|
||||
"version": "1.8.15",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mirotalk",
|
||||
"version": "1.8.14",
|
||||
"version": "1.8.15",
|
||||
"license": "AGPL-3.0",
|
||||
"dependencies": {
|
||||
"@mattermost/client": "11.6.0",
|
||||
@@ -29,7 +29,7 @@
|
||||
"js-yaml": "^4.1.1",
|
||||
"jsdom": "^29.1.0",
|
||||
"jsonwebtoken": "^9.0.3",
|
||||
"nodemailer": "^8.0.6",
|
||||
"nodemailer": "^8.0.7",
|
||||
"openai": "^6.34.0",
|
||||
"qs": "^6.15.1",
|
||||
"socket.io": "^4.8.3",
|
||||
@@ -4769,9 +4769,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/nodemailer": {
|
||||
"version": "8.0.6",
|
||||
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-8.0.6.tgz",
|
||||
"integrity": "sha512-Nm2XeuDwwy2wi5A+8jPWwQwNzcjNjhWdE3pVLoXEusxJqCnAPAgnBGkSmiLknbnWuOF9qraRpYZjfxqtKZ4tPw==",
|
||||
"version": "8.0.7",
|
||||
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-8.0.7.tgz",
|
||||
"integrity": "sha512-pkjE4mkBzQjdJT4/UmlKl3pX0rC9fZmjh7c6C9o7lv66Ac6w9WCnzPzhbPNxwZAzlF4mdq4CSWB5+FbK6FWCow==",
|
||||
"license": "MIT-0",
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mirotalk",
|
||||
"version": "1.8.14",
|
||||
"version": "1.8.15",
|
||||
"description": "A free WebRTC browser-based video call",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
@@ -64,7 +64,7 @@
|
||||
"js-yaml": "^4.1.1",
|
||||
"jsdom": "^29.1.0",
|
||||
"jsonwebtoken": "^9.0.3",
|
||||
"nodemailer": "^8.0.6",
|
||||
"nodemailer": "^8.0.7",
|
||||
"openai": "^6.34.0",
|
||||
"qs": "^6.15.1",
|
||||
"socket.io": "^4.8.3",
|
||||
|
||||
+1
-1
@@ -109,7 +109,7 @@ let brand = {
|
||||
},
|
||||
about: {
|
||||
imageUrl: '../images/mirotalk-logo.gif',
|
||||
title: 'WebRTC P2P v1.8.14',
|
||||
title: 'WebRTC P2P v1.8.15',
|
||||
html: `
|
||||
<button
|
||||
id="support-button"
|
||||
|
||||
+7
-5
@@ -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.8.14
|
||||
* @version 1.8.15
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -303,6 +303,10 @@ const chatInputEmoji = {
|
||||
':J': '🥴',
|
||||
}; // https://github.com/wooorm/gemoji/blob/main/support.md
|
||||
|
||||
const CHAT_REACTION_EMOJIS = ['👍', '❤️', '😂', '😮', '😢', '🔥'];
|
||||
const CHAT_GPT_PEER_ID = 'chatgpt';
|
||||
const CHAT_GPT_NAME = 'ChatGPT';
|
||||
|
||||
// Chat room emoji picker
|
||||
const msgerEmojiPicker = getId('msgerEmojiPicker');
|
||||
|
||||
@@ -671,9 +675,7 @@ let isSpeechSynthesisSupported = 'speechSynthesis' in window;
|
||||
let transcripts = []; // collect all the transcripts to save it later if you need
|
||||
let chatMessages = []; // collect chat messages to save it later if want
|
||||
let chatGPTcontext = []; // keep chatGPT messages context
|
||||
const CHAT_REACTION_EMOJIS = ['👍', '❤️', '😂', '😮', '😢', '🔥'];
|
||||
const CHAT_GPT_PEER_ID = 'chatgpt';
|
||||
const CHAT_GPT_NAME = 'ChatGPT';
|
||||
|
||||
let activeConversation = {
|
||||
type: 'public',
|
||||
peerName: '',
|
||||
@@ -15497,7 +15499,7 @@ function showAbout() {
|
||||
Swal.fire({
|
||||
background: swBg,
|
||||
position: 'center',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.8.14',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.8.15',
|
||||
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
|
||||
customClass: { image: 'img-about' },
|
||||
html: `
|
||||
|
||||
Reference in New Issue
Block a user