[mirotalk] - #290 update package version

This commit is contained in:
Miroslav Pejic
2026-03-16 00:06:23 +01:00
parent 815c44f1e1
commit 1b717f1dea
8 changed files with 14 additions and 25 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# ====================================================
# MiroTalk P2P v.1.7.42 - Environment Configuration
# MiroTalk P2P v.1.7.43 - Environment Configuration
# ====================================================
# App environment
+4 -10
View File
@@ -2,7 +2,7 @@
/**
* ==============================================
* MiroTalk P2P v.1.7.42 - Configuration File
* MiroTalk P2P v.1.7.43 - Configuration File
* ==============================================
*
* This file is the central configuration source.
@@ -191,9 +191,7 @@ module.exports = {
allowRoomCreationForAuthUsers: process.env.OIDC_ALLOW_ROOMS_CREATION_FOR_AUTH_USERS
? getEnvBoolean(process.env.OIDC_ALLOW_ROOMS_CREATION_FOR_AUTH_USERS)
: false,
baseUrlDynamic: process.env.OIDC_BASE_URL_DYNAMIC
? getEnvBoolean(process.env.OIDC_BASE_URL_DYNAMIC)
: false,
baseUrlDynamic: process.env.OIDC_BASE_URL_DYNAMIC ? getEnvBoolean(process.env.OIDC_BASE_URL_DYNAMIC) : false,
config: {
issuerBaseURL: process.env.OIDC_ISSUER_BASE_URL,
clientID: process.env.OIDC_CLIENT_ID,
@@ -204,12 +202,8 @@ module.exports = {
response_type: 'code',
scope: 'openid profile email',
},
authRequired: process.env.OIDC_AUTH_REQUIRED
? getEnvBoolean(process.env.OIDC_AUTH_REQUIRED)
: false,
auth0Logout: process.env.OIDC_AUTH_LOGOUT
? getEnvBoolean(process.env.OIDC_AUTH_LOGOUT)
: true,
authRequired: process.env.OIDC_AUTH_REQUIRED ? getEnvBoolean(process.env.OIDC_AUTH_REQUIRED) : false,
auth0Logout: process.env.OIDC_AUTH_LOGOUT ? getEnvBoolean(process.env.OIDC_AUTH_LOGOUT) : true,
routes: {
callback: '/auth/callback',
login: false,
+1 -1
View File
@@ -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.7.42
* @version 1.7.43
*
*/
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "mirotalk",
"version": "1.7.42",
"version": "1.7.43",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "mirotalk",
"version": "1.7.42",
"version": "1.7.43",
"license": "AGPL-3.0",
"dependencies": {
"@mattermost/client": "11.4.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.7.42",
"version": "1.7.43",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
+1 -1
View File
@@ -79,7 +79,7 @@ let brand = {
},
about: {
imageUrl: '../images/mirotalk-logo.gif',
title: 'WebRTC P2P v1.7.42',
title: 'WebRTC P2P v1.7.43',
html: `
<button
id="support-button"
+2 -2
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.7.42
* @version 1.7.43
*
*/
@@ -13738,7 +13738,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.7.42',
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.7.43',
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
customClass: { image: 'img-about' },
html: `
+2 -7
View File
@@ -184,14 +184,9 @@ describe('test-api', () => {
const result = serverApi.getToken(tokenData);
result.should.equal('jwtToken');
signStub
.calledWith({ data: 'encryptedPayload' }, config.jwt.key, { expiresIn: '1h' })
.should.be.true();
signStub.calledWith({ data: 'encryptedPayload' }, config.jwt.key, { expiresIn: '1h' }).should.be.true();
encryptStub
.calledWith(
JSON.stringify({ username: 'user', password: 'pass', presenter: 'true' }),
config.jwt.key
)
.calledWith(JSON.stringify({ username: 'user', password: 'pass', presenter: 'true' }), config.jwt.key)
.should.be.true();
signStub.restore();