Review of "Net Speed Plus" version 2

Details Page Preview

Display real-time network download and upload speed in the top panel

Extension Homepage
https://github.com/shivamksharma/gnome-shell-extension-net-speed

No comments.

Diff Against

Files

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

All Versions

Version Status
3 Active
2 Rejected
1 Rejected

Previous Reviews on this Version

JustPerfection rejected
1. Please remove `schemas/gschemas.compiled`. Not needed for 45+ packages. 2. In 42+ you have `connectObject()` and `disconnectObject()`. No need to use manual clean up: [Port Guide 42: Signals](https://gjs.guide/extensions/upgrading/gnome-shell-42.html#signals) For example: ```js this._settings.connectObject('changed::update-interval', () => { this._restartTimer(); }, this); ``` On destroy: ```js this._settings.disconnectObject(this); ```