Review of "Whale Watch" version 1.0.0 (1)

Details Page Preview

Docker container manager in the GNOME top panel. Monitor running containers, start/stop/restart individually or all at once, open a shell, view live logs, inspect container details with live CPU/RAM stats, and manage Docker Compose groups — all without leaving your desktop.

Extension Homepage
https://github.com/iouzzine/whale-watch

No comments.

FAQ

Files

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

Shexli (experimental) warning 3

Shexli found 3 issues that may need reviewer attention.

EGO-P-007 warning

JavaScript files should be reachable from extension.js or prefs.js

Some JavaScript files are not reachable from `extension.js` or `prefs.js` imports.

Don't include unnecessary files

  • container-details.js
  • log-viewer.js

EGO-L-003 warning

signals connected by extension should be disconnected in disable()

Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.

Disconnect all signals

  • extension.js:98
            this.menu.connect('open-state-changed', (_menu, open) => {
                if (open) {
                    this._searchEntry.set_text('');
                    this._refresh();
                }
            })

EGO-L-004 warning

main loop sources should be removed in disable()

Main loop sources assigned in `enable()` are missing matching removals in `disable()` or its helper methods.

Remove main loop sources

  • extension.js:636
            GLib.timeout_add(GLib.PRIORITY_DEFAULT, ms, () => {
                this._refresh();
                return GLib.SOURCE_REMOVE;
            })

All Versions

Version Status
1.0.0 (2) Unreviewed
1.0.0 (1) Rejected

Previous Reviews on this Version

iouzzine auto- rejected
Auto-rejected because of new version 1.0.0 (2) was uploaded