Skip to content

Commit

Permalink
[mirotalk] - move settings button
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jan 12, 2025
1 parent 01271a5 commit e8e75b2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies: {
* @license For commercial use or closed source, contact us at [email protected] or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - [email protected]
* @version 1.4.47
* @version 1.4.48
*
*/

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
12 changes: 9 additions & 3 deletions public/css/client.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down
6 changes: 3 additions & 3 deletions public/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @license For commercial use or closed source, contact us at [email protected] or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - [email protected]
* @version 1.4.47
* @version 1.4.48
*
*/

Expand Down Expand Up @@ -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);
Expand All @@ -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);
}

Expand Down Expand Up @@ -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' },
Expand Down
2 changes: 1 addition & 1 deletion public/views/client.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ <h1>Loading</h1>
<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 -->
Expand All @@ -149,6 +148,7 @@ <h1>Loading</h1>
<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>

Expand Down

0 comments on commit e8e75b2

Please sign in to comment.