Skip to content

Commit 6e952f5

Browse files
[mirotalk] #340 - fix(client): fix invisible device dropdown options (white-on-white) and update dep
1 parent d9f3459 commit 6e952f5

8 files changed

Lines changed: 48 additions & 19 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.67 - Environment Configuration
2+
# MiroTalk P2P v.1.8.68 - 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.67 - Configuration File
5+
* MiroTalk P2P v.1.8.68 - 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.67
48+
* @version 1.8.68
4949
*
5050
*/
5151

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalk",
3-
"version": "1.8.67",
3+
"version": "1.8.68",
44
"description": "A free WebRTC browser-based video call",
55
"main": "server.js",
66
"scripts": {
@@ -57,15 +57,15 @@
5757
"dotenv": "^17.4.2",
5858
"express": "^5.2.1",
5959
"express-openid-connect": "^3.2.0",
60-
"express-rate-limit": "^8.5.2",
60+
"express-rate-limit": "^8.6.0",
6161
"he": "^1.2.0",
6262
"helmet": "^8.3.0",
6363
"httpolyglot": "0.1.2",
6464
"js-yaml": "^5.2.1",
6565
"jsdom": "^29.1.1",
6666
"jsonwebtoken": "^9.0.3",
6767
"nodemailer": "^9.0.3",
68-
"openai": "^6.47.0",
68+
"openai": "^6.48.0",
6969
"qs": "^6.15.3",
7070
"socket.io": "^4.8.3",
7171
"swagger-ui-express": "^5.0.1",

public/css/client.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,11 @@ body {
402402
box-shadow: 0 0 0 2px rgba(70, 120, 249, 0.15);
403403
}
404404

405+
.init-user select option {
406+
background: var(--select-bg);
407+
color: white;
408+
}
409+
405410
.init-user button {
406411
width: 50px;
407412
padding: 10px;

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.67',
112+
title: 'WebRTC P2P v1.8.68',
113113
html: `
114114
<button
115115
id="support-button"

public/js/client.js

Lines changed: 2 additions & 2 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.67
18+
* @version 1.8.68
1919
*
2020
*/
2121

@@ -15962,7 +15962,7 @@ function showAbout() {
1596215962
Swal.fire({
1596315963
background: swBg,
1596415964
position: 'center',
15965-
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.8.67',
15965+
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.8.68',
1596615966
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
1596715967
customClass: { image: 'img-about' },
1596815968
html: renderRoomTemplate('tpl-about-modal', {

0 commit comments

Comments
 (0)