Skip to content

Commit

Permalink
[mirotalksfu] - add keyboard shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Jan 9, 2025
1 parent 9b4e565 commit a2db7eb
Show file tree
Hide file tree
Showing 8 changed files with 304 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/src/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dev dependencies: {
* @license For commercial or closed source, contact us at [email protected] or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - [email protected]
* @version 1.6.89
* @version 1.6.90
*
*/

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
"version": "1.6.89",
"version": "1.6.90",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
Expand Down Expand Up @@ -78,7 +78,7 @@
"mediasoup-client": "3.8.1",
"ngrok": "^5.0.0-beta.2",
"nodemailer": "^6.9.16",
"openai": "^4.77.3",
"openai": "^4.77.4",
"qs": "6.13.1",
"socket.io": "4.8.1",
"swagger-ui-express": "5.0.1",
Expand Down
32 changes: 31 additions & 1 deletion public/css/Room.css
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,36 @@ th {
width: 180px;
}

/*--------------------------------------------------------------
# Shortcut Table
--------------------------------------------------------------*/

#shortcutsTable {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 16px;
text-align: left;
color: #fff;
border-radius: 10px;
background: var(--body-bg);
}
#shortcutsTable th,
#shortcutsTable td {
border: var(--border);
padding: 5px;
}
#shortcutsTable th {
background: var(--body-bg);
font-weight: bold;
}
#shortcutsTable td i {
color: #007bff;
}
#shortcutsTable tr:nth-child(even) {
background: var(--body-bg);
}

/*--------------------------------------------------------------
# RTMP settings
--------------------------------------------------------------*/
Expand Down Expand Up @@ -640,7 +670,7 @@ th {
width: 65%;
background-color: var(--body-bg);
min-height: 480px;
max-height: 680px;
max-height: 768px;
overflow-x: hidden;
overflow-y: auto;
}
Expand Down
1 change: 1 addition & 0 deletions public/js/LocalStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class LocalStorage {
pitch_bar: true, // volume indicator
sounds: true, // room notify sounds
keep_buttons_visible: false, // Keep buttons always visible
keyboard_shortcuts: false, // keyboard shortcuts
host_only_recording: false, // presenter
rec_prioritize_h264: false, // Prioritize h.264 with AAC or h.264 with Opus codecs over VP8 with Opus or VP9 with Opus codecs
rec_server: false, // The recording will be stored on the server rather than locally
Expand Down
Loading

0 comments on commit a2db7eb

Please sign in to comment.