1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-06 05:10:57 +00:00
* Added: Setting to hide the "Discover Luna" link in the top navigation.
* Changed: Hide blocked categories from the directory's category list.
* Fixed: Stream up-times not appearing in the directory.
* Fixed: Error in error handler for PubSub.
* API Added: `Dialog` now supports prepending its element to its container, rather than appending.
* API Added: `tip.add_class` for adding additional classes to rich tooltips that may now have had their element created yet.
This commit is contained in:
SirStendec 2021-11-05 18:01:28 -04:00
parent 032c8821df
commit 76b72b86c8
22 changed files with 219 additions and 156 deletions

View file

@ -11,11 +11,13 @@ import SettingsManager from './settings/index';
class FFZBridge extends Module {
constructor() {
super();
const start_time = performance.now(),
VER = FFZBridge.version_info;
const start_time = performance.now();
FFZBridge.instance = this;
this.host = 'null';
this.flavor = 'bridge';
this.name = 'ffz_bridge';
this.__state = 0;
this.__modules.core = this;
@ -29,8 +31,7 @@ class FFZBridge extends Module {
this.log.init = true;
this.core_log = this.log.get('core');
this.log.info(`FrankerFaceZ Settings Bridge v${VER} (build ${VER.build}${VER.commit ? ` - commit ${VER.commit}` : ''}) (initial ${location})`);
this.log.hi(this);
// ========================================================================