1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-31 23:18:31 +00:00
* Added: Settings page for editing the list of categories that are Blocked or have Hidden Thumbnails.
* Changed: When popping out the FFZ Control Center, it now remembers which page it was on.
* Fixed: Emoji-related features not functioning correctly if the emoji style is set to an invalid value. (Closes #923)
* Fixed: Messages not being highlighted when a viewer card is open. (Closes #920)
* Fixed: Disable minimal navigation for Watch Parties. (Closes #916)
* Fixed: Block and Hide Thumbnails controls not appearing on appropriate directory pages.
* Fixed: Hide Thumbnails not working for a category when on that category's directory page.
* Fixed: Move up theater metadata to avoid it overlapping with the seek preview when viewing videos.
* Fixed: Various instances of `occurred` being spelled incorrectly.
* Fixed: Setting incorrectly named `Show Twitch Prime offers.` has been renamed to `Show Prime Gaming Loot.` to reflect Amazon's branding changes.
* API Added: `ProviderMixin` for creating Vue components for settings that are set directly to the settings provider. See the new `games-list-editor` for an example.
* API Added: Select box and combo box settings now have an optional `no_i18n` property to avoid i18n keys being automatically generated for their entries.
This commit is contained in:
SirStendec 2020-10-14 14:55:10 -04:00
parent 53b22d8a09
commit b88e6f0f75
17 changed files with 343 additions and 31 deletions

View file

@ -241,9 +241,12 @@ export default class CSSTweaks extends Module {
});
this.settings.add('layout.minimal-navigation', {
requires: ['layout.theatre-navigation'],
requires: ['layout.theatre-navigation', 'context.isWatchParty'],
default: false,
process(ctx, val) {
if ( ctx.get('context.isWatchParty') )
return false;
return ctx.get('layout.theatre-navigation') ?
true : val;
},
@ -288,7 +291,7 @@ export default class CSSTweaks extends Module {
default: true,
ui: {
path: 'Appearance > Layout >> Top Navigation',
title: 'Show Twitch Prime offers.',
title: 'Show Prime Gaming Loot.',
component: 'setting-check-box'
},
changed: val => this.toggleHide('prime-offers', !val)