Many WFC related improvements (WIP)

* Update systeminformation to 5.x
* More work on WFC display of basic stats -- nearly complete
* Disable idle timeout when on WFC
This commit is contained in:
Bryan Ashby
2022-05-01 12:41:20 -06:00
parent 193c203a05
commit dd7d24f22e
9 changed files with 39 additions and 18 deletions

View File

@@ -99,12 +99,18 @@ exports.getModule = class WaitingForCallerModule extends MenuModule {
});
}
enter() {
this.client.stopIdleMonitor();
super.enter();
}
leave() {
_.remove(Log.log.streams, stream => {
return stream.name === 'wfc-ringbuffer';
});
this._stopRefreshing();
this.client.startIdleMonitor();
super.leave();
}