mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-03 01:28:30 +00:00
3.5.78 to 3.5.83. It's been so long since I've commited. I'm a bad person. Added grouping for hosted channels, and a menu to select which channel you visit. Added weights for selecting which socket server to use. Added server time offset calculations. Refactored a LOT of how chat badges and chat line rendering and history processing works behind the scenes. Removed a ton of duplicate code. Added basic adjacent chat message lookups. Need better server support.
This commit is contained in:
parent
a050063c81
commit
c167a8b626
28 changed files with 1501 additions and 538 deletions
14
src/main.js
14
src/main.js
|
@ -22,7 +22,7 @@ FFZ.get = function() { return FFZ.instance; }
|
|||
|
||||
// Version
|
||||
var VER = FFZ.version_info = {
|
||||
major: 3, minor: 5, revision: 77,
|
||||
major: 3, minor: 5, revision: 83,
|
||||
toString: function() {
|
||||
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
||||
}
|
||||
|
@ -149,6 +149,7 @@ require('./ext/emote_menu');
|
|||
|
||||
require('./featurefriday');
|
||||
|
||||
require('./ui/popups');
|
||||
require('./ui/styles');
|
||||
require('./ui/dark');
|
||||
require('./ui/tooltips');
|
||||
|
@ -256,9 +257,12 @@ FFZ.prototype.init_normal = function(delay, no_socket) {
|
|||
// Start this early, for quick loading.
|
||||
this.setup_dark();
|
||||
this.setup_css();
|
||||
this.setup_popups();
|
||||
|
||||
if ( ! no_socket )
|
||||
if ( ! no_socket ) {
|
||||
this.setup_time();
|
||||
this.ws_create();
|
||||
}
|
||||
|
||||
this.setup_colors();
|
||||
this.setup_emoticons();
|
||||
|
@ -294,8 +298,11 @@ FFZ.prototype.init_dashboard = function(delay) {
|
|||
// Start this early, for quick loading.
|
||||
this.setup_dark();
|
||||
this.setup_css();
|
||||
this.setup_popups();
|
||||
|
||||
this.setup_time();
|
||||
this.ws_create();
|
||||
|
||||
this.setup_colors();
|
||||
this.setup_emoticons();
|
||||
this.setup_badges();
|
||||
|
@ -336,8 +343,11 @@ FFZ.prototype.init_ember = function(delay) {
|
|||
// Start this early, for quick loading.
|
||||
this.setup_dark();
|
||||
this.setup_css();
|
||||
this.setup_popups();
|
||||
|
||||
this.setup_time();
|
||||
this.ws_create();
|
||||
|
||||
this.setup_emoticons();
|
||||
this.setup_badges();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue