[mirotalk] - move settings button

This commit is contained in:
Miroslav Pejic
2025-01-12 18:13:15 +01:00
parent 01271a5475
commit e8e75b2974
5 changed files with 15 additions and 9 deletions
+1 -1
View File
@@ -39,7 +39,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.4.47
* @version 1.4.48
*
*/
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.4.47",
"version": "1.4.48",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
+9 -3
View File
@@ -973,9 +973,15 @@ button:hover {
}
#bottomButtons button {
width: 42px;
padding: 10px;
font-size: 1.2rem;
width: 36px;
font-size: 1rem;
}
}
@media screen and (max-width: 350px) {
#bottomButtons button {
width: 30px;
font-size: 0.6rem;
}
}
+3 -3
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.4.47
* @version 1.4.48
*
*/
@@ -823,7 +823,6 @@ function refreshMainButtonsToolTipPlacement() {
setTippy(snapshotRoomBtn, 'Snapshot screen, windows or tab', placement);
setTippy(fileShareBtn, 'Share file', placement);
setTippy(documentPiPBtn, 'Toggle Document picture in picture', placement);
setTippy(mySettingsBtn, 'Open the settings', placement);
setTippy(aboutBtn, 'About this project', placement);
setTippy(toggleExtraBtn, 'Toggle extra buttons', bottomButtonsPlacement);
@@ -832,6 +831,7 @@ function refreshMainButtonsToolTipPlacement() {
setTippy(screenShareBtn, 'Start screen sharing', bottomButtonsPlacement);
setTippy(myHandBtn, 'Raise your hand', bottomButtonsPlacement);
setTippy(chatRoomBtn, 'Open the chat', bottomButtonsPlacement);
setTippy(mySettingsBtn, 'Open the settings', bottomButtonsPlacement);
setTippy(leaveRoomBtn, 'Leave this room', bottomButtonsPlacement);
}
@@ -11036,7 +11036,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: '<strong>WebRTC P2P v1.4.47</strong>',
title: '<strong>WebRTC P2P v1.4.48</strong>',
imageAlt: 'mirotalk-about',
imageUrl: images.about,
customClass: { image: 'img-about' },
+1 -1
View File
@@ -135,7 +135,6 @@ access to use this app.
<button id="snapshotRoomBtn" class="fas fas fa-camera-retro"></button>
<button id="fileShareBtn" class="fas fa-folder-open"></button>
<button id="documentPiPBtn" class="fas fa-images"></button>
<button id="mySettingsBtn" class="fas fa-cogs"></button>
<button id="aboutBtn" class="fas fa-question"></button>
</div>
<!-- End left buttons -->
@@ -149,6 +148,7 @@ access to use this app.
<button id="screenShareBtn" class="fas fa-desktop"></button>
<button id="myHandBtn" class="fas fa-hand-paper"></button>
<button id="chatRoomBtn" class="fas fa-comment"></button>
<button id="mySettingsBtn" class="fas fa-cogs"></button>
<button id="leaveRoomBtn" class="fa-solid fa-phone-slash"></button>
</div>