1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-07 23:00:54 +00:00
* Added: Setting to toggle the Audio Compressor with a shortcut key.
* Added: Gain Control for the Audio Compressor. Gain Control is an additional volume control that runs after the compressor, as an alternative to the built-in volume control which happens before the compressor.
* Changed: Use case-insensitive string comparison for the `Current Page` profile rule.
* Fixed: The current channel not being detected correctly on user pages.
* API Added: Standardized input processors for settings. So far, there are `to_int` and `to_float` with support for bounds.
This commit is contained in:
SirStendec 2021-04-24 14:37:01 -04:00
parent 66702103ff
commit b3c3c8130d
20 changed files with 785 additions and 154 deletions

View file

@ -19,6 +19,20 @@ export const LV_SERVER = 'https://cbenni.com/api';
export const LV_SOCKET_SERVER = 'wss://cbenni.com/socket.io/';
export const BAD_HOTKEYS = [
'f',
'space',
'k',
'shift+up',
'shift+down',
'esc',
'm',
'?',
'alt+t',
'alt+x'
];
export const KEYS = {
Tab: 9,
Enter: 13,