[mirotalksfu] - update dep, test restartIce
هذا الالتزام موجود في:
@@ -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 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
|
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
||||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||||
* @version 1.5.70
|
* @version 1.5.71
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mirotalksfu",
|
"name": "mirotalksfu",
|
||||||
"version": "1.5.70",
|
"version": "1.5.71",
|
||||||
"description": "WebRTC SFU browser-based video calls",
|
"description": "WebRTC SFU browser-based video calls",
|
||||||
"main": "Server.js",
|
"main": "Server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sentry/node": "^8.30.0",
|
"@sentry/node": "^8.31.0",
|
||||||
"axios": "^1.7.7",
|
"axios": "^1.7.7",
|
||||||
"body-parser": "1.20.3",
|
"body-parser": "1.20.3",
|
||||||
"colors": "1.4.0",
|
"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 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
|
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
||||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||||
* @version 1.5.70
|
* @version 1.5.71
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -1403,6 +1403,7 @@ function roomIsReady() {
|
|||||||
if (room_password) {
|
if (room_password) {
|
||||||
lockRoomButton.click();
|
lockRoomButton.click();
|
||||||
}
|
}
|
||||||
|
//show(restartICEButton); // TEST
|
||||||
}
|
}
|
||||||
|
|
||||||
function elemDisplay(element, display, mode = 'block') {
|
function elemDisplay(element, display, mode = 'block') {
|
||||||
@@ -1961,9 +1962,9 @@ function handleButtons() {
|
|||||||
aboutButton.onclick = () => {
|
aboutButton.onclick = () => {
|
||||||
showAbout();
|
showAbout();
|
||||||
};
|
};
|
||||||
// restartICE.onclick = async () => {
|
restartICEButton.onclick = async () => {
|
||||||
// await rc.restartIce();
|
await rc.restartIce();
|
||||||
// };
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// ####################################################
|
// ####################################################
|
||||||
@@ -4455,7 +4456,7 @@ function showAbout() {
|
|||||||
imageUrl: image.about,
|
imageUrl: image.about,
|
||||||
customClass: { image: 'img-about' },
|
customClass: { image: 'img-about' },
|
||||||
position: 'center',
|
position: 'center',
|
||||||
title: 'WebRTC SFU v1.5.70',
|
title: 'WebRTC SFU v1.5.71',
|
||||||
html: `
|
html: `
|
||||||
<br />
|
<br />
|
||||||
<div id="about">
|
<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 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
|
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
||||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||||
* @version 1.5.70
|
* @version 1.5.71
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -658,6 +658,8 @@ class RoomClient {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
producerTransportData['proprietaryConstraints'] = { optional: [{ googDscp: true }] };
|
||||||
|
|
||||||
this.producerTransport = device.createSendTransport(producerTransportData);
|
this.producerTransport = device.createSendTransport(producerTransportData);
|
||||||
|
|
||||||
console.info('07.4 producerTransportData ---->', {
|
console.info('07.4 producerTransportData ---->', {
|
||||||
|
|||||||
@@ -189,8 +189,8 @@ access to use this app.
|
|||||||
<button id="whiteboardButton" class="hidden"><i class="fas fa-chalkboard-teacher"></i></button>
|
<button id="whiteboardButton" class="hidden"><i class="fas fa-chalkboard-teacher"></i></button>
|
||||||
<button id="snapshotRoomButton" class="hidden"><i class="fas fas fa-camera-retro"></i></button>
|
<button id="snapshotRoomButton" class="hidden"><i class="fas fas fa-camera-retro"></i></button>
|
||||||
<button id="settingsButton" class="hidden"><i class="fas fa-cogs"></i></button>
|
<button id="settingsButton" class="hidden"><i class="fas fa-cogs"></i></button>
|
||||||
|
<button id="restartICEButton" class="hidden"><i class="fas fa-satellite-dish"></i></button>
|
||||||
<button id="aboutButton" class="hidden"><i class="fas fa-question"></i></button>
|
<button id="aboutButton" class="hidden"><i class="fas fa-question"></i></button>
|
||||||
<!-- <button id="restartICE" class="hidden"><i class="fas fa-satellite-dish"></i></button> -->
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="bottomButtons" class="fadein">
|
<div id="bottomButtons" class="fadein">
|
||||||
|
|||||||
المرجع في مشكلة جديدة
حظر مستخدم