1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-30 08:08:32 +00:00

Bump version. Add settings to hide Twitch Prime offers and to show minimal navigation when in theatre mode.

This commit is contained in:
SirStendec 2018-04-07 19:51:53 -04:00
parent f77371d8fb
commit dc358a774d
4 changed files with 57 additions and 3 deletions

View file

@ -1,3 +1,13 @@
<div class="list-header">4.0.0-beta2.1<span>@1a56c5fabae6fb37d845</span> <time datetime="2018-04-07">(2018-04-07)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Added several settings to configure the emote menu.</li>
<li>Added: Setting to display minimized navigation at the top of the page when in theatre mode.</li>
<li>Added: Setting to hide Twitch Prime offers.</li>
<li>Fixed: Tab-completion not updating correctly when navigating to another channel.</li>
<li>Fixed: Chat rendering failure when we receive conflicting user ID &lt;-&gt; username mappings.</li>
<li>Fixed: The emote menu erroring out if you aren't logged in.</li>
</ul>
<div class="list-header">4.0.0-beta2<span>@65ca9bedbd1b59ec8df4</span> <time datetime="2018-04-06">(2018-04-06)</time></div> <div class="list-header">4.0.0-beta2<span>@65ca9bedbd1b59ec8df4</span> <time datetime="2018-04-06">(2018-04-06)</time></div>
<ul class="chat-menu-content menu-side-padding"> <ul class="chat-menu-content menu-side-padding">
<li>Added: Emote Menu</li> <li>Added: Emote Menu</li>

View file

@ -95,7 +95,7 @@ class FrankerFaceZ extends Module {
FrankerFaceZ.Logger = Logger; FrankerFaceZ.Logger = Logger;
const VER = FrankerFaceZ.version_info = { const VER = FrankerFaceZ.version_info = {
major: 4, minor: 0, revision: 0, extra: '-beta2', major: 4, minor: 0, revision: 0, extra: '-beta2.1',
build: __webpack_hash__, build: __webpack_hash__,
toString: () => toString: () =>
`${VER.major}.${VER.minor}.${VER.revision}${VER.extra || ''}${DEBUG ? '-dev' : ''}` `${VER.major}.${VER.minor}.${VER.revision}${VER.extra || ''}${DEBUG ? '-dev' : ''}`

View file

@ -17,6 +17,8 @@ const CLASSES = {
'side-closed-friends': '.side-nav--collapsed .online-friends', 'side-closed-friends': '.side-nav--collapsed .online-friends',
'side-closed-rec-channels': '.side-nav--collapsed .recommended-channels', 'side-closed-rec-channels': '.side-nav--collapsed .recommended-channels',
'prime-offers': '.top-nav__prime',
'player-ext': '.player .extension-overlay', 'player-ext': '.player .extension-overlay',
'player-ext-hover': '.player:not([data-controls="true"]) .extension-overlay', 'player-ext-hover': '.player:not([data-controls="true"]) .extension-overlay',
@ -112,7 +114,7 @@ export default class CSSTweaks extends Module {
this.settings.add('layout.swap-sidebars', { this.settings.add('layout.swap-sidebars', {
default: false, default: false,
ui: { ui: {
path: 'Appearance > Layout >> General', path: 'Appearance > Layout >> Side Navigation',
title: 'Swap Sidebars', title: 'Swap Sidebars',
description: 'Swap navigation and chat to the opposite sides of the window.', description: 'Swap navigation and chat to the opposite sides of the window.',
@ -122,9 +124,14 @@ export default class CSSTweaks extends Module {
}); });
this.settings.add('layout.minimal-navigation', { this.settings.add('layout.minimal-navigation', {
requires: ['layout.theatre-navigation'],
default: false, default: false,
process(ctx, val) {
return ctx.get('layout.theatre-navigation') ?
true : val;
},
ui: { ui: {
path: 'Appearance > Layout >> General', path: 'Appearance > Layout >> Top Navigation',
title: 'Minimize Navigation', title: 'Minimize Navigation',
description: "Slide the site navigation bar up out of view when it isn't in use.", description: "Slide the site navigation bar up out of view when it isn't in use.",
@ -133,6 +140,30 @@ export default class CSSTweaks extends Module {
changed: val => this.toggle('minimal-navigation', val) changed: val => this.toggle('minimal-navigation', val)
}); });
this.settings.add('layout.theatre-navigation', {
requires: ['context.ui.theatreModeEnabled'],
default: false,
process(ctx, val) {
return ctx.get('context.ui.theatreModeEnabled') ? val : false
},
ui: {
path: 'Appearance > Layout >> Top Navigation',
title: 'Show the minimized navigation bar when in theatre mode.',
component: 'setting-check-box'
},
changed: val => this.toggle('theatre-nav', val)
})
this.settings.add('layout.prime-offers', {
default: true,
ui: {
path: 'Appearance > Layout >> Top Navigation',
title: 'Show Twitch Prime offers.',
component: 'setting-check-box'
},
changed: val => this.toggleHide('prime-offers', !val)
});
// Chat // Chat
@ -162,9 +193,11 @@ export default class CSSTweaks extends Module {
onEnable() { onEnable() {
this.toggle('swap-sidebars', this.settings.get('layout.swap-sidebars')); this.toggle('swap-sidebars', this.settings.get('layout.swap-sidebars'));
this.toggle('minimal-navigation', this.settings.get('layout.minimal-navigation')); this.toggle('minimal-navigation', this.settings.get('layout.minimal-navigation'));
this.toggle('theatre-nav', this.settings.get('layout.theatre-navigation'));
this.toggleHide('side-nav', !this.settings.get('layout.side-nav.show')); this.toggleHide('side-nav', !this.settings.get('layout.side-nav.show'));
this.toggleHide('side-rec-friends', !this.settings.get('layout.side-nav.show-rec-friends')); this.toggleHide('side-rec-friends', !this.settings.get('layout.side-nav.show-rec-friends'));
this.toggleHide('prime-offers', !this.settings.get('layout.prime-offers'));
const recs = this.settings.get('layout.side-nav.show-rec-channels'); const recs = this.settings.get('layout.side-nav.show-rec-channels');
this.toggleHide('side-rec-channels', recs === 0); this.toggleHide('side-rec-channels', recs === 0);

View file

@ -0,0 +1,11 @@
.twilight-root {
.top-nav {
z-index: 9999;
}
.persistent-player--theatre,
.right-column--theatre {
top: 1rem !important;
height: calc(100% - 1rem) !important;
}
}