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

3.5.361. Fix VOD chat.

This commit is contained in:
SirStendec 2016-11-02 01:22:23 -04:00
parent c8a7d65732
commit e1538fe672
5 changed files with 26 additions and 13 deletions

View file

@ -1,3 +1,9 @@
<div class="list-header">3.5.361 <time datetime="2016-11-02">(2016-11-02)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Twitch renamed VOD chat components internally so no FFZ features were working for it.</li>
<li>Fixed: VOD chat would become light again after toggling theater mode on and then off again.</li>
</ul>
<div class="list-header">3.5.360 <time datetime="2016-10-28">(2016-10-28)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Changed: Move the Twitch emotes data file so CloudFlare will actually cache it. Woo Page Rules</li>
@ -65,15 +71,5 @@
<li>Fixed: BetterTTV + Modifier Emotes</li>
</ul>
<div class="list-header">3.5.350 <time datetime="2016-10-25">(2016-10-25)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: More tweaks for hover pausing, since that's still glitchy.</li>
</ul>
<div class="list-header">3.5.349 <time datetime="2016-10-25">(2016-10-25)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Tab completion was not being populated correctly.</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,13 @@
<div class="list-header">3.5.350 <time datetime="2016-10-25">(2016-10-25)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: More tweaks for hover pausing, since that's still glitchy.</li>
</ul>
<div class="list-header">3.5.349 <time datetime="2016-10-25">(2016-10-25)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Tab completion was not being populated correctly.</li>
</ul>
<div class="list-header">3.5.348 <time datetime="2016-10-25">(2016-10-25)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Twitch replaced <code>view:room</code> with <code>component:chat/chat-room</code> which broke several features. Unbroke them.</li>

View file

@ -678,7 +678,7 @@ FFZ.prototype.setup_line = function() {
this.toggle_style('chat-hc-background', this.settings.high_contrast_chat[0] === '1');
this.update_views('component:vod-chat-line', this._modify_vod_line);
this.update_views('component:video/rechat/chat-message', this._modify_vod_line);
this.update_views('component:chat/message-line', this._modify_chat_subline);
this.update_views('component:chat/whisper-line', this._modify_chat_subline);

View file

@ -44,7 +44,7 @@ FFZ.prototype.setup_vod_chat = function() {
else
f.error("Unable to locate VOD Chat Service.");
this.update_views('component:vod-chat-display', this.modify_vod_chat_display);
this.update_views('component:video/rechat/display-container', this.modify_vod_chat_display);
}
@ -59,6 +59,13 @@ FFZ.prototype.modify_vod_chat_display = function(component) {
if ( f.settings.dark_twitch )
this.$().parents('.chat-container').addClass('dark');
this.parentView.addObserver('layout.isTheatreMode', function() {
if ( f._vodc && f.settings.dark_twitch )
setTimeout(function(){
f._vodc.$().parents('.chat-container').addClass('dark');
});
});
this.ffzUpdateBadges();
// Load the room, if nencessary.

View file

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