reaper-arcade-hub 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/app.js +9 -0
- package/main/js/app.js +9 -0
- package/package.json +2 -2
package/js/app.js
CHANGED
|
@@ -2523,6 +2523,15 @@ class ReaperHubApp {
|
|
|
2523
2523
|
}
|
|
2524
2524
|
});
|
|
2525
2525
|
}
|
|
2526
|
+
|
|
2527
|
+
// Master Mute (M key)
|
|
2528
|
+
window.addEventListener('keydown', (e) => {
|
|
2529
|
+
if (e.key === 'm' || e.key === 'M') {
|
|
2530
|
+
if (!['INPUT', 'TEXTAREA'].includes(document.activeElement.tagName)) {
|
|
2531
|
+
this.toggleSoundFX();
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
});
|
|
2526
2535
|
}
|
|
2527
2536
|
|
|
2528
2537
|
openSettingsModal() {
|
package/main/js/app.js
CHANGED
|
@@ -2523,6 +2523,15 @@ class ReaperHubApp {
|
|
|
2523
2523
|
}
|
|
2524
2524
|
});
|
|
2525
2525
|
}
|
|
2526
|
+
|
|
2527
|
+
// Master Mute (M key)
|
|
2528
|
+
window.addEventListener('keydown', (e) => {
|
|
2529
|
+
if (e.key === 'm' || e.key === 'M') {
|
|
2530
|
+
if (!['INPUT', 'TEXTAREA'].includes(document.activeElement.tagName)) {
|
|
2531
|
+
this.toggleSoundFX();
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
});
|
|
2526
2535
|
}
|
|
2527
2536
|
|
|
2528
2537
|
openSettingsModal() {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reaper-arcade-hub",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Reaper Hub -
|
|
3
|
+
"version": "2.0.4",
|
|
4
|
+
"description": "Reaper Hub - Full High-Speed Arcade Engine (788 Games), Security Shield, HWID Gateway, Realtime Chat & DMs, Playtime Leaderboard & Working Game Launcher",
|
|
5
5
|
"main": "main/index.html",
|
|
6
6
|
"unpkg": "main/index.html",
|
|
7
7
|
"jsdelivr": "main/index.html",
|