Review of "RunCat" version 24

Details Page Preview

The cat tells you the CPU usage by running speed

Extension Homepage
https://github.com/win0err/gnome-runcat

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

Shexli (experimental)

Shexli has not produced a result yet.

All Versions

Previous Reviews on this Version

JustPerfection rejected
Having those objects as private properties in prefs.js (line 41-45) won't let everything get garbage collected after window close. If you want to do that, make them local (for `fillPreferencesWindow`) and pass them to the methods they need it. or you can leave it like that and null them out on window close request: ```js fillPreferencesWindow(window) { // .. window.connect('close-request', () => { this.#settings = null this.#builder = null this.#window = null }); } ```