[mirotalksfu] - fix chat

هذا الالتزام موجود في:
Miroslav Pejic
2024-10-22 12:39:11 +02:00
الأصل dbfb374bf5
التزام 4a3df0c7c9
5 ملفات معدلة مع 13 إضافات و14 حذوفات

عرض الملف

@@ -55,7 +55,7 @@ dev dependencies: {
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.5.96
* @version 1.5.97
*
*/

عرض الملف

@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
"version": "1.5.96",
"version": "1.5.97",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
@@ -57,7 +57,7 @@
"node": ">=18"
},
"dependencies": {
"@sentry/node": "^8.34.0",
"@sentry/node": "^8.35.0",
"axios": "^1.7.7",
"body-parser": "1.20.3",
"colors": "1.4.0",

عرض الملف

@@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.5.96
* @version 1.5.97
*
*/
@@ -3932,7 +3932,7 @@ function getParticipantsList(peers) {
// CHAT-GPT
if (chatGPT) {
const chatgpt_active = rc.chatPeerName === 'ChatGPT' ? ' active' : '';
const chatgpt_active = !rc.isChatOpen && rc.chatPeerName === 'ChatGPT' ? ' active' : '';
li = `
<li
@@ -3953,7 +3953,7 @@ function getParticipantsList(peers) {
</li>`;
}
const public_chat_active = rc.chatPeerName === 'all' ? ' active' : '';
const public_chat_active = !rc.isChatOpen && rc.chatPeerName === 'all' ? ' active' : '';
// ALL
li += `
@@ -4036,7 +4036,7 @@ function getParticipantsList(peers) {
const peer_id = peer_info.peer_id;
const avatarImg = getParticipantAvatar(peer_name);
const peer_chat_active = rc.chatPeerId === peer_id ? ' active' : '';
const peer_chat_active = !rc.isChatOpen && rc.chatPeerId === peer_id ? ' active' : '';
// NOT ME
if (socket.id !== peer_id) {
@@ -4500,7 +4500,7 @@ function showAbout() {
imageUrl: image.about,
customClass: { image: 'img-about' },
position: 'center',
title: 'WebRTC SFU v1.5.96',
title: 'WebRTC SFU v1.5.97',
html: `
<br />
<div id="about">

عرض الملف

@@ -9,7 +9,7 @@
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.5.96
* @version 1.5.97
*
*/

عرض الملف

@@ -35,11 +35,11 @@ guestJoinRoomBtn.addEventListener('click', () => {
// Function to play sound
function playSound(name) {
if (!settings.sounds) return;
const soundSrc = `../sounds/${name}.wav`;
const audio = new Audio(soundSrc);
audio.volume = 0.5;
audio.play().catch((err) => {
console.error(`Error playing sound: ${err}`);
});
@@ -63,13 +63,13 @@ async function checkRoomStatus(roomId) {
const response = await axios.post('/isRoomActive', { roomId });
const isActive = response.data.message;
console.log('Room active status:', isActive);
roomActive = isActive;
if (roomActive) {
playSound('roomActive');
guestJoinRoomBtn.classList.remove('disabled');
presenterLoginBtn.style.display = 'none';
if (autoJoinRoom) {
guestJoinRoomBtn.click();
}
@@ -120,4 +120,3 @@ document.addEventListener('visibilitychange', handleVisibilityChange);
handleScreenResize(mediaQuery);
checkRoomStatus(roomId);
startRoomStatusCheck();