1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00

3.5.421. Fix bits stuff.

This commit is contained in:
SirStendec 2017-01-26 11:12:38 -05:00
parent 0b21f20906
commit 8f75ca2d12
4 changed files with 21 additions and 16 deletions

View file

@ -1,3 +1,8 @@
<div class="list-header">3.5.421 <time datetime="2017-01-24">(2017-01-24)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Error initializing bits rendering breaking other parts of the client.</li>
</ul>
<div class="list-header">3.5.<span id="u420">420</span> <time datetime="2017-01-20">(2017-01-20)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Added: Tab-completion for the <code>/reset</code> command which clears the current Top Cheer.</li>
@ -59,19 +64,5 @@
<li>Yes, I'm spending New Years Eve writing code. Leave me alone.</li>
</ul>
<div class="list-header">3.5.410 <time datetime="2016-12-28">(2016-12-28)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>API Fixed: <code>api.retokenize_messages</code> didn't actually work.</li>
<li>Fixed: Pinned cheers showing with a strange background color.</li>
</ul>
<div class="list-header">3.5.409 <time datetime="2016-12-23">(2016-12-23)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Don't collapse a widget on the dashboard clicking in its settings menu.</li>
<li>Fixed: Dark theme CSS tweaks for the dashboard.</li>
<li>Fixed: Dark theme CSS tweaks for clips.</li>
<li>Changed: Re-factor chat line CSS to eliminate the need for <code>:before</code> pseudo-elements.</li>
</ul>
<div class="list-header" id="ffz-old-news-button"><a href="#">View Older</a></div>
<div id="ffz-old-news"></div>

View file

@ -1,3 +1,17 @@
<div class="list-header">3.5.410 <time datetime="2016-12-28">(2016-12-28)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>API Fixed: <code>api.retokenize_messages</code> didn't actually work.</li>
<li>Fixed: Pinned cheers showing with a strange background color.</li>
</ul>
<div class="list-header">3.5.409 <time datetime="2016-12-23">(2016-12-23)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Don't collapse a widget on the dashboard clicking in its settings menu.</li>
<li>Fixed: Dark theme CSS tweaks for the dashboard.</li>
<li>Fixed: Dark theme CSS tweaks for clips.</li>
<li>Changed: Re-factor chat line CSS to eliminate the need for <code>:before</code> pseudo-elements.</li>
</ul>
<div class="list-header">3.5.408 <time datetime="2016-12-22">(2016-12-22)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Added: Option to hide Cheering with #Charity notices.</li>

View file

@ -286,7 +286,7 @@ FFZ.prototype.setup_bits = function() {
});
}
if ( Service.get('isLoaded') )
if ( Service.get('isLoaded') && Service.loadRenderConfig )
Service.loadRenderConfig();
}

View file

@ -61,7 +61,7 @@ FFZ.channel_metadata = {};
// Version
var VER = FFZ.version_info = {
major: 3, minor: 5, revision: 420,
major: 3, minor: 5, revision: 421,
toString: function() {
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
}