|
15 | 15 | * @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon |
16 | 16 | * @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661 |
17 | 17 | * @author Miroslav Pejic - miroslav.pejic.85@gmail.com |
18 | | - * @version 1.8.14 |
| 18 | + * @version 1.8.15 |
19 | 19 | * |
20 | 20 | */ |
21 | 21 |
|
@@ -303,6 +303,10 @@ const chatInputEmoji = { |
303 | 303 | ':J': '🥴', |
304 | 304 | }; // https://github.com/wooorm/gemoji/blob/main/support.md |
305 | 305 |
|
| 306 | +const CHAT_REACTION_EMOJIS = ['👍', '❤️', '😂', '😮', '😢', '🔥']; |
| 307 | +const CHAT_GPT_PEER_ID = 'chatgpt'; |
| 308 | +const CHAT_GPT_NAME = 'ChatGPT'; |
| 309 | + |
306 | 310 | // Chat room emoji picker |
307 | 311 | const msgerEmojiPicker = getId('msgerEmojiPicker'); |
308 | 312 |
|
@@ -671,9 +675,7 @@ let isSpeechSynthesisSupported = 'speechSynthesis' in window; |
671 | 675 | let transcripts = []; // collect all the transcripts to save it later if you need |
672 | 676 | let chatMessages = []; // collect chat messages to save it later if want |
673 | 677 | let chatGPTcontext = []; // keep chatGPT messages context |
674 | | -const CHAT_REACTION_EMOJIS = ['👍', '❤️', '😂', '😮', '😢', '🔥']; |
675 | | -const CHAT_GPT_PEER_ID = 'chatgpt'; |
676 | | -const CHAT_GPT_NAME = 'ChatGPT'; |
| 678 | + |
677 | 679 | let activeConversation = { |
678 | 680 | type: 'public', |
679 | 681 | peerName: '', |
@@ -15497,7 +15499,7 @@ function showAbout() { |
15497 | 15499 | Swal.fire({ |
15498 | 15500 | background: swBg, |
15499 | 15501 | position: 'center', |
15500 | | - title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.8.14', |
| 15502 | + title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.8.15', |
15501 | 15503 | imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about, |
15502 | 15504 | customClass: { image: 'img-about' }, |
15503 | 15505 | html: ` |
|
0 commit comments