mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
4.29.3
* 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:
parent
032c8821df
commit
76b72b86c8
22 changed files with 219 additions and 156 deletions
|
@ -18,11 +18,11 @@ import Site from './sites/player';
|
|||
class FrankerFaceZ extends Module {
|
||||
constructor() {
|
||||
super();
|
||||
const start_time = performance.now(),
|
||||
VER = FrankerFaceZ.version_info;
|
||||
const start_time = performance.now();
|
||||
|
||||
FrankerFaceZ.instance = this;
|
||||
|
||||
this.host = 'twitch';
|
||||
this.flavor = 'player';
|
||||
this.name = 'ffz_player';
|
||||
this.__state = 0;
|
||||
|
@ -39,8 +39,7 @@ class FrankerFaceZ extends Module {
|
|||
this.log.init = true;
|
||||
|
||||
this.core_log = this.log.get('core');
|
||||
|
||||
this.log.info(`FrankerFaceZ Standalone Player v${VER} (build ${VER.build}${VER.commit ? ` - commit ${VER.commit}` : ''}) (initial ${location})`);
|
||||
this.log.hi(this);
|
||||
|
||||
|
||||
// ========================================================================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue