1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-03 01:28:30 +00:00

3.5.41 to 3.5.50. Viewer list sorting is now optional. CSS is now embedded in the script to prevent loading issues. Started testing new socket server. Added chat batching option to display new messages in batches for performance reasons. Changed socket server rotation logic. Added error checks for Stream Latency. Socket protocol now uses ok instead of True. Added deploy and clear_cache commands to gulp for convenience.

This commit is contained in:
SirStendec 2015-11-01 17:28:19 -05:00
parent 05db9ea5eb
commit 10da2b4fd5
13 changed files with 371 additions and 85 deletions

View file

@ -22,7 +22,7 @@ FFZ.get = function() { return FFZ.instance; }
// Version
var VER = FFZ.version_info = {
major: 3, minor: 5, revision: 42,
major: 3, minor: 5, revision: 50,
toString: function() {
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
}