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

Why, Twitch? Closes #16

This commit is contained in:
SirStendec 2016-10-04 12:06:49 -04:00
parent e3cf6cb777
commit 91e8cb5739
3 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
<div class="list-header">3.5.310 <time datetime="2016-10-03">(2016-10-04)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Twitch broke message handling by deciding <em>every</em> message is a system message. I'll fix it properly later.</li>
</ul>
<div class="list-header">3.5.309 <time datetime="2016-10-03">(2016-10-03)</time></div> <div class="list-header">3.5.309 <time datetime="2016-10-03">(2016-10-03)</time></div>
<ul class="chat-menu-content menu-side-padding"> <ul class="chat-menu-content menu-side-padding">
<li>Fixed: Properly position the Theater Mode metadata bar when whispers are at the bottom of the screen.</li> <li>Fixed: Properly position the Theater Mode metadata bar when whispers are at the bottom of the screen.</li>

View file

@ -916,6 +916,10 @@ FFZ.prototype._modify_chat_line = function(component, is_vod) {
return ! this.get('hasSystemMsg') || this.get('hasMessageBody'); return ! this.get('hasSystemMsg') || this.get('hasMessageBody');
}.property('hasSystemMsg', 'hasMessageBody'), }.property('hasSystemMsg', 'hasMessageBody'),
systemMsg: function() {
return this.get('msgObject.tags.system-msg')
}.property('msgObject.tags.system-msg'),
//shouldRenderMessageBody: function() { //shouldRenderMessageBody: function() {
// return false; // return false;
//}.property('hasSystemMsg', 'hasMessageBody'), //}.property('hasSystemMsg', 'hasMessageBody'),

View file

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