1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 18:06:55 +00:00

Update the changelog. Remove useless logging.

This commit is contained in:
SirStendec 2017-11-14 22:15:05 -05:00
parent 10c6c1cb87
commit 24aac91258
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,9 @@
<div class="list-header">4.0.0-beta1.3<span>@bebd15e93d1888192504</span> <time datetime="2017-11-13">(2017-11-13)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Always remove chat lines in multiples of two to avoid the alternating background colors changing.</li>
<li>Fixed: If there are multiple emoticons for the same indices, render the one with the biggest ID. Fixes self-sent turbo/prime face emotes.</li>
</ul>
<div class="list-header">4.0.0-beta1.3<span>@63206f4ff1c95b591873</span> <time datetime="2017-11-13">(2017-11-13)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Added: Appearance > Theme > Gray Theme (no Purple)</li>

View file

@ -39,14 +39,14 @@ export default class ChannelBar extends Module {
this.ChannelBar.on('mount', this.updateChannelBar, this);
this.ChannelBar.on('update', this.updateChannelBar, this);
this.HostBar.on('mount', inst => {
/*this.HostBar.on('mount', inst => {
this.log.info('host-mount', inst, this.fine.getHostNode(inst));
});
this.HostBar.ready((cls, instances) => {
for(const inst of instances)
this.log.info('host-found', inst, this.fine.getHostNode(inst));
})
})*/
}

View file

@ -67,7 +67,6 @@ export default class ThemeEngine extends Module {
}
updateSetting(enable) {
console.log('update-setting', enable);
this.toggleStyle(enable);
document.body.classList.toggle('theme--ffz', enable);
}