1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-01 15:38:31 +00:00
Fixed: The Add Action menu for Chat Actions being too tall to fit within the FFZ Control Center at some resolutions.
Fixed: Styling for various hover-able UI elements.
Fixed: User Context Chat Actions set to show/hide based upon a message's deleted state not properly doing so.
Fixed: The FFZ emote menu appearing too tall at times.
Fixed: Remove debug logging.
Changed: The `Delete All` button in the Chat Actions editors will now not immediately clear all actions, but rather show another button asking the user to confirm.
Changed: Add a page rule for dashboard pop-out chat so that profiles can be made for it.
Changed: Update `CHAT_TYPES` from Twitch.
This commit is contained in:
SirStendec 2019-08-09 14:24:26 -04:00
parent 056cc9c401
commit 39fb185ecf
27 changed files with 130 additions and 83 deletions

View file

@ -173,6 +173,7 @@ Twilight.KNOWN_MODULES = {
Twilight.CHAT_ROUTES = [
'collection',
'popout',
'dash-chat',
'video',
'user-video',
'user-clip',
@ -193,6 +194,7 @@ Twilight.ROUTE_NAMES = {
'dir-all': 'Browse Live Channels',
'dash': 'Dashboard',
'popout': 'Popout Chat',
'dash-chat': 'Dashboard Popout Chat',
'user-video': 'Channel Video'
};
@ -215,6 +217,7 @@ Twilight.ROUTES = {
//'dash-automod': '/:userName/dashboard/settings/automod',
'event': '/event/:eventName',
'popout': '/popout/:userName/chat',
'dash-chat': '/popout/:userName/dashboard/live/chat',
'video': '/videos/:videoID',
'user-video': '/:userName/video/:videoID',
'user-videos': '/:userName/videos/:filter?',