File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# ====================================================
2- # MiroTalk C2C v.1.2.85 - Environment Configuration
2+ # MiroTalk C2C v.1.2.86 - Environment Configuration
33# ====================================================
44
55# App environment
Original file line number Diff line number Diff line change 99 * @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
1010 * @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
1111 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12- * @version 1.2.85
12+ * @version 1.2.86
1313 */
1414
1515require ( 'dotenv' ) . config ( ) ;
Original file line number Diff line number Diff line change @@ -138,6 +138,43 @@ body {
138138 }
139139}
140140
141+ /* Waiting dots animation */
142+ .waiting-dots {
143+ display : flex;
144+ justify-content : center;
145+ gap : 8px ;
146+ margin-bottom : 25px ;
147+ }
148+
149+ .waiting-dots .dot {
150+ width : 10px ;
151+ height : 10px ;
152+ border-radius : 50% ;
153+ background : # fff ;
154+ animation : waiting-bounce 1.4s ease-in-out infinite;
155+ }
156+
157+ .waiting-dots .dot : nth-child (2 ) {
158+ animation-delay : 0.2s ;
159+ }
160+
161+ .waiting-dots .dot : nth-child (3 ) {
162+ animation-delay : 0.4s ;
163+ }
164+
165+ @keyframes waiting-bounce {
166+ 0% ,
167+ 80% ,
168+ 100% {
169+ opacity : 0.3 ;
170+ transform : scale (0.8 );
171+ }
172+ 40% {
173+ opacity : 1 ;
174+ transform : scale (1.2 );
175+ }
176+ }
177+
141178.grid-buttons {
142179 display : grid;
143180 grid-template-columns : repeat (5 , 1fr ); /* 4 equal-width columns */
Original file line number Diff line number Diff line change @@ -82,6 +82,11 @@ <h1 class="pulsate">Waiting</h1>
8282 < pre >
8383Waiting for users to join.
8484 </ pre >
85+ < div class ="waiting-dots ">
86+ < span class ="dot "> </ span >
87+ < span class ="dot "> </ span >
88+ < span class ="dot "> </ span >
89+ </ div >
8590 </ div >
8691 < div class ="grid-buttons ">
8792 < button id ="shareRoomBtn " class ="fas fa-share-nodes "> </ button >
Original file line number Diff line number Diff line change 99 * @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
1010 * @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
1111 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12- * @version 1.2.85
12+ * @version 1.2.86
1313 */
1414
1515const roomId = new URLSearchParams ( window . location . search ) . get ( 'room' ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " mirotalkc2c" ,
3- "version" : " 1.2.85 " ,
3+ "version" : " 1.2.86 " ,
44 "description" : " A free WebRTC Cam-2-Cam browser-based video calls" ,
55 "main" : " server.js" ,
66 "scripts" : {
4040 "dependencies" : {
4141 "@mattermost/client" : " 11.5.0" ,
4242 "@ngrok/ngrok" : " 1.7.0" ,
43- "@sentry/node" : " ^10.46 .0" ,
43+ "@sentry/node" : " ^10.47 .0" ,
4444 "colors" : " ^1.4.0" ,
4545 "compression" : " ^1.8.1" ,
4646 "cors" : " ^2.8.6" ,
4747 "dompurify" : " ^3.3.3" ,
48- "dotenv" : " ^17.3.1 " ,
48+ "dotenv" : " ^17.4.0 " ,
4949 "express" : " ^5.2.1" ,
5050 "express-openid-connect" : " ^2.20.1" ,
5151 "he" : " ^1.2.0" ,
You can’t perform that action at this time.
0 commit comments