Skip to content

Commit

Permalink
[mirotalk] - change font, update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Sep 5, 2024
1 parent 656f8bf commit b0a7b09
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 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.3.72
* @version 1.3.73
*
*/

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.3.72",
"version": "1.3.73",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
Expand Down Expand Up @@ -41,8 +41,8 @@
"license": "AGPL-3.0",
"homepage": "https://github.com/miroslavpejic85/mirotalk",
"dependencies": {
"@sentry/node": "^8.26.0",
"axios": "^1.7.4",
"@sentry/node": "^8.28.0",
"axios": "^1.7.7",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"compression": "^1.7.4",
Expand All @@ -54,8 +54,8 @@
"jsonwebtoken": "^9.0.2",
"js-yaml": "^4.1.0",
"ngrok": "^5.0.0-beta.2",
"nodemailer": "^6.9.14",
"openai": "^4.56.0",
"nodemailer": "^6.9.15",
"openai": "^4.57.3",
"qs": "^6.13.0",
"socket.io": "^4.7.5",
"swagger-ui-express": "^5.0.1",
Expand Down
12 changes: 6 additions & 6 deletions public/css/client.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import url('https://fonts.googleapis.com/css?family=Comfortaa:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/*--------------------------------------------------------------
# Root settings
Expand Down Expand Up @@ -98,7 +98,7 @@

* {
outline: none;
font-family: 'Comfortaa';
font-family: 'Montserrat';
}

/*--------------------------------------------------------------
Expand Down Expand Up @@ -143,15 +143,15 @@ body {
}
#loadingDiv h1 {
font-size: 60px;
font-family: 'Comfortaa';
font-family: 'Montserrat';
}
#loadingDiv img {
margin-top: 5px;
margin-bottom: 5px;
}
#loadingDiv pre {
padding: 5px;
font-family: 'Comfortaa';
font-family: 'Montserrat';
}

/*--------------------------------------------------------------
Expand Down Expand Up @@ -862,7 +862,7 @@ button:hover {
border-radius: 5px;
--rgb-background: var(--body-bg) !important;
--color-border-over: var(--body-bg) !important;
--font-family: 'Comfortaa';
--font-family: 'Montserrat';
}

.roomEmoji {
Expand All @@ -878,7 +878,7 @@ button:hover {
transform: translate(-50%, -50%);
--rgb-background: var(--body-bg);
--color-border-over: var(--body-bg);
--font-family: 'Comfortaa';
--font-family: 'Montserrat';
}

.userEmoji {
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.3.72
* @version 1.3.73
*
*/

Expand Down Expand Up @@ -9266,7 +9266,7 @@ function whiteboardAddObj(type) {
const text = new fabric.IText('Lorem Ipsum', {
top: 0,
left: 0,
fontFamily: 'Comfortaa',
fontFamily: 'Montserrat',
fill: wbCanvas.freeDrawingBrush.color,
strokeWidth: wbCanvas.freeDrawingBrush.width,
stroke: wbCanvas.freeDrawingBrush.color,
Expand Down Expand Up @@ -10527,7 +10527,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: '<strong>WebRTC P2P v1.3.72</strong>',
title: '<strong>WebRTC P2P v1.3.73</strong>',
imageAlt: 'mirotalk-about',
imageUrl: images.about,
customClass: { image: 'img-about' },
Expand Down

0 comments on commit b0a7b09

Please sign in to comment.