mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
3.5.418. Bunch of changes made while I was away at AGDQ. Add a setting for using the mouse wheel to adjust player volume. Fix colors in vod chat when Twitch adds non-messages as messages. (CLEARCHAT go home you're drunk...)
This commit is contained in:
parent
6b13ac3265
commit
03c825c398
13 changed files with 465 additions and 175 deletions
|
@ -61,7 +61,7 @@ FFZ.channel_metadata = {};
|
|||
|
||||
// Version
|
||||
var VER = FFZ.version_info = {
|
||||
major: 3, minor: 5, revision: 409,
|
||||
major: 3, minor: 5, revision: 418,
|
||||
toString: function() {
|
||||
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
||||
}
|
||||
|
@ -145,7 +145,7 @@ FFZ.prototype._pastebin = function(data) {
|
|||
// -------------------
|
||||
|
||||
FFZ.prototype.get_user = function(force_reload) {
|
||||
if ( ! force_reload && this.__user )
|
||||
if ( ! force_reload && this.__user && this.__user.chat_oauth_token )
|
||||
return this.__user;
|
||||
|
||||
var LC = FFZ.utils.ember_lookup('service:login'),
|
||||
|
@ -257,6 +257,7 @@ require('./ui/following-count');
|
|||
require('./ui/races');
|
||||
require('./ui/my_emotes');
|
||||
require('./ui/about_page');
|
||||
require('./ui/schedule');
|
||||
|
||||
require('./commands');
|
||||
require('./ext/api');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue