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

3.5.429. CSS tweaks for dark theme. Display uptime on the Discover queue. Stop re-inserting a SVG element into the DOM once a second on the directory page. Seriously, that's dumb. Also stop duplicating emote data structures from the API. Low memory use is more important than protecting the API from minor structure changes.

This commit is contained in:
SirStendec 2017-02-16 13:30:18 -05:00
parent b80731985f
commit c3cca7de64
7 changed files with 102 additions and 50 deletions

View file

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