Skip to content

Commit 5739823

Browse files
[mirotalk] - fix typo, update dep
1 parent bd74875 commit 5739823

7 files changed

Lines changed: 19 additions & 17 deletions

File tree

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ====================================================
2-
# MiroTalk P2P v.1.8.14 - Environment Configuration
2+
# MiroTalk P2P v.1.8.15 - Environment Configuration
33
# ====================================================
44

55
# App environment

app/src/config.template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* ==============================================
5-
* MiroTalk P2P v.1.8.14 - Configuration File
5+
* MiroTalk P2P v.1.8.15 - Configuration File
66
* ==============================================
77
*
88
* This file is the central configuration source.

app/src/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies: {
4545
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
4646
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
4747
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
48-
* @version 1.8.14
48+
* @version 1.8.15
4949
*
5050
*/
5151

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalk",
3-
"version": "1.8.14",
3+
"version": "1.8.15",
44
"description": "A free WebRTC browser-based video call",
55
"main": "server.js",
66
"scripts": {
@@ -64,7 +64,7 @@
6464
"js-yaml": "^4.1.1",
6565
"jsdom": "^29.1.0",
6666
"jsonwebtoken": "^9.0.3",
67-
"nodemailer": "^8.0.6",
67+
"nodemailer": "^8.0.7",
6868
"openai": "^6.34.0",
6969
"qs": "^6.15.1",
7070
"socket.io": "^4.8.3",

public/js/brand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ let brand = {
109109
},
110110
about: {
111111
imageUrl: '../images/mirotalk-logo.gif',
112-
title: 'WebRTC P2P v1.8.14',
112+
title: 'WebRTC P2P v1.8.15',
113113
html: `
114114
<button
115115
id="support-button"

public/js/client.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
1616
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
1717
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
18-
* @version 1.8.14
18+
* @version 1.8.15
1919
*
2020
*/
2121

@@ -303,6 +303,10 @@ const chatInputEmoji = {
303303
':J': '🥴',
304304
}; // https://github.com/wooorm/gemoji/blob/main/support.md
305305

306+
const CHAT_REACTION_EMOJIS = ['👍', '❤️', '😂', '😮', '😢', '🔥'];
307+
const CHAT_GPT_PEER_ID = 'chatgpt';
308+
const CHAT_GPT_NAME = 'ChatGPT';
309+
306310
// Chat room emoji picker
307311
const msgerEmojiPicker = getId('msgerEmojiPicker');
308312

@@ -671,9 +675,7 @@ let isSpeechSynthesisSupported = 'speechSynthesis' in window;
671675
let transcripts = []; // collect all the transcripts to save it later if you need
672676
let chatMessages = []; // collect chat messages to save it later if want
673677
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+
677679
let activeConversation = {
678680
type: 'public',
679681
peerName: '',
@@ -15497,7 +15499,7 @@ function showAbout() {
1549715499
Swal.fire({
1549815500
background: swBg,
1549915501
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',
1550115503
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
1550215504
customClass: { image: 'img-about' },
1550315505
html: `

0 commit comments

Comments
 (0)