High-performance Matrix notification monitor for GNOME Shell.
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:132
file.load_contents(null)
EGO-A-005 manual_review
extensions should not access the clipboard directly
Direct clipboard access via `St.Clipboard.get_default()` requires reviewer scrutiny.
extension.js:207
St.Clipboard.get_default()
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:974
this._settings.connect(`changed::${SETTINGS_KEYS.SYNC_INTERVAL}`, () => this._restartTimer())
extension.js:979
this._settings.connect(`changed::${SETTINGS_KEYS.CLIENT_TYPE}`, rebuildMenu)
extension.js:980
this._settings.connect(`changed::${SETTINGS_KEYS.GENERATE_QR_ENABLE}`, rebuildMenu)
extension.js:981
this._settings.connect(`changed::${SETTINGS_KEYS.NOTIFICATIONS_ENABLE}`, rebuildMenu)