1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-05 02:28:31 +00:00

3.5.329. Found this faster than I thought I would. Teaches me to include Twitch analytics functions. Closes #31.

This commit is contained in:
SirStendec 2016-10-14 02:09:26 -04:00
parent ef3f18081c
commit 13efe21492
3 changed files with 7 additions and 3 deletions

View file

@ -1,4 +1,9 @@
<div class="list-header">3.5.328 <time datetime="2016-10-12">(2016-10-13)</time></div> <div class="list-header">3.5.329 <time datetime="2016-10-14">(2016-10-14)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Issue causing Ember to stop responding to observers regarding chat messages.</li>
</ul>
<div class="list-header">3.5.328 <time datetime="2016-10-13">(2016-10-13)</time></div>
<ul class="chat-menu-content menu-side-padding"> <ul class="chat-menu-content menu-side-padding">
<li>Changed: Refactor channel metadata to make it easier to add with less code duplication.</li> <li>Changed: Refactor channel metadata to make it easier to add with less code duplication.</li>
<li>Fixed: Follow buttons for Featured channels now appear again.</li> <li>Fixed: Follow buttons for Featured channels now appear again.</li>

View file

@ -626,7 +626,6 @@ FFZ.prototype.modify_room_view = function(view) {
s[0].scrollTop = s[0].scrollHeight; s[0].scrollTop = s[0].scrollHeight;
e._setStuckToBottom(true); e._setStuckToBottom(true);
e._tagVisibleMessages();
}) })
}) })
}, 200), }, 200),

View file

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