Skip to content

Commit

Permalink
[mirotalk] - fix typo, add header logo box-shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jul 15, 2024
1 parent 18d93c2 commit e0edd71
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,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.3.43
* @version 1.3.44
*
*/

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.3.43",
"version": "1.3.44",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
Expand Down
16 changes: 16 additions & 0 deletions public/css/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -2045,6 +2045,22 @@ textarea.form-input {

.site-header .brand {
margin-right: 32px;
border-radius: 50%;
}

.site-header .brand {
margin-right: 32px;
display: inline-block;
transition:
transform 0.3s,
filter 0.3s,
box-shadow 0.3s;
}

.site-header .brand:hover {
filter: brightness(1.5) saturate(1.2);
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(255, 0, 208, 0.6);
}

.site-header-inner {
Expand Down
4 changes: 2 additions & 2 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.3.43
* @version 1.3.44
*
*/

Expand Down Expand Up @@ -10065,7 +10065,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: '<strong>WebRTC P2P v1.3.43</strong>',
title: '<strong>WebRTC P2P v1.3.44</strong>',
imageAlt: 'mirotalk-about',
imageUrl: images.about,
customClass: { image: 'img-about' },
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
16 changes: 8 additions & 8 deletions public/views/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ <h2 class="mt-0 mb-16">
<div class="features-tiles-item-image mb-16">
<img
class="wh-200-150"
src="../svg/screen_sharing.svg"
src="../svg/screenSharing.svg"
alt="Screen Sharing"
/>
</div>
Expand All @@ -199,7 +199,7 @@ <h4 class="mt-0 mb-8">Screen Sharing</h4>
<div class="features-tiles-item-image mb-16">
<img
class="wh-200-150"
src="../svg/webcam_streaming.svg"
src="../svg/webcamStreaming.svg"
alt="WebCam Streaming"
/>
</div>
Expand All @@ -218,7 +218,7 @@ <h4 class="mt-0 mb-8">WebCam Streaming</h4>
<div class="tiles-item-inner">
<div class="features-tiles-item-header">
<div class="features-tiles-item-image mb-16">
<img class="wh-200-150" src="../svg/webcam_chat.svg" alt="Chat Room" />
<img class="wh-200-150" src="../svg/webcamChat.svg" alt="Chat Room" />
</div>
</div>
<div class="features-tiles-item-content">
Expand All @@ -237,7 +237,7 @@ <h4 class="mt-0 mb-8">Chat Room</h4>
<div class="features-tiles-item-image mb-16">
<img
class="wh-200-150"
src="../svg/recording_meeting.svg"
src="../svg/recordingMeeting.svg"
alt="Meeting Recording"
/>
</div>
Expand All @@ -258,7 +258,7 @@ <h4 class="mt-0 mb-8">Meeting Recording</h4>
<div class="features-tiles-item-image mb-16">
<img
class="wh-200-150"
src="../svg/interactive_whitboard.svg"
src="../svg/interactiveWhitboard.svg"
alt="Interactive Whiteboard"
/>
</div>
Expand All @@ -279,7 +279,7 @@ <h4 class="mt-0 mb-8">Interactive Whiteboard</h4>
<div class="features-tiles-item-image mb-16">
<img
class="wh-200-150"
src="../svg/file_sharing.svg"
src="../svg/fileSharing.svg"
alt="File Sharing"
/>
</div>
Expand Down Expand Up @@ -334,7 +334,7 @@ <h4 class="mt-0 mb-8">Rest API</h4>
<div class="features-tiles-item-image mb-16">
<img
class="wh-200-150"
src="../svg/total_privacy.svg"
src="../svg/totalPrivacy.svg"
alt="Total Privacy"
/>
</div>
Expand All @@ -355,7 +355,7 @@ <h4 class="mt-0 mb-8">Total Privacy</h4>
<div class="features-tiles-item-image mb-16">
<img
class="wh-200-150"
src="../svg/maximum_security.svg"
src="../svg/maximumSecurity.svg"
alt="Maximum Security"
/>
</div>
Expand Down

0 comments on commit e0edd71

Please sign in to comment.