Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-X-004 warning
extensions should avoid synchronous file IO in shell code
Shell code should avoid synchronous file IO APIs like `GLib.file_get_contents()` and `Gio.File.load_contents()`.
extension.js:65
GLib.file_get_contents("/proc/meminfo")
EGO-P-006 warning
unnecessary build and translation artifacts should not be shipped
Compiled GSettings schemas should not be shipped for 45+ packages.
Don't include unnecessary files
schemas/gschemas.compiled
schemas/gschemas.compiled
EGO-L-002 warning
objects created by extension should be destroyed in disable()
Objects assigned in `enable()` are missing matching `.destroy()` calls in `disable()` or its helper methods.
extension.js:44
this._label = new St.Label({
text: 'Just memory usage',
y_align: Clutter.ActorAlign.CENTER,
style_class: 'panel-button',
track_hover: false,
reactive: false
})
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.
extension.js:31
this._settings.connect('changed::digits', (settings, key) => {
this._digits = settings.get_uint(key);
})
extension.js:35
this._settings.connect('changed::timeout', (settings, key) => {
GLib.source_remove(this._timeout);
this._timeout = GLib.timeout_add(GLib.PRIORITY_DEFAULT, settings.get_uint(key), () => {
this._refresh();
return true;
});