Tweak IBus font, input mode, clipboard history, etc. For support, please report issues in time via the Homepage link below rather than the review section below it
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO029 warning
extensions should not call run_dispose in extension code
Extension code should not call `run_dispose()`.
fubar.js:120
x.run_dispose()
EGO036 warning
extensions should not use lookupByURL or lookupByUUID for current extension access
Use `this`, `this.getSettings()` or `this.path` instead of `lookupByURL()` or `lookupByUUID()` for the current extension.
fubar.js:25
Extension.lookupByURL(import.meta.url)
| Version | Status |
|---|---|
| 50 | Active |
| 49 | Active |
| 48 | Active |
| 47 | Active |
| 46 | Active |
| 45 | Active |
| 44 | Active |
| 43 | Active |
| 42 | Rejected |
| 41 | Rejected |
| 40 | Active |
| 39 | Active |
| 38 | Active |
| 37 | Rejected |
| 36 | Active |
| 35 | Inactive |
| 34 | Active |
| 33 | Inactive |
| 32 | Inactive |
| 31 | Inactive |
| 30 | Inactive |
| 29 | Inactive |
| 28 | Active |
| 27 | Inactive |
| 26 | Inactive |
| 25 | Rejected |
| 24 | Active |
| 23 | Active |
| 22 | Inactive |
| 21 | Inactive |
| 20 | Rejected |
| 19 | Rejected |
| 18 | Rejected |
| 17 | Inactive |
| 16 | Rejected |
| 15 | Inactive |
| 14 | Inactive |
| 13 | Inactive |
| 12 | Inactive |
| 11 | Inactive |
| 10 | Inactive |
| 9 | Inactive |
| 8 | Rejected |
| 7 | Rejected |
| 6 | Inactive |
| 5 | Inactive |
| 4 | Inactive |
| 3 | Inactive |
| 2 | Inactive |
| 1 | Inactive |
Thanks for reviewing. :) > EGO029 `run_dispose` This follows the GNOME Shell practice [0] thus is considered ‘absolutely necessary’ and has been commented in accordance with the guidelines [1]. [0] https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/a540670a9f468298fb7ccce6f2544cd4180a4db1/js/ui/keyboard.js#L1996-L1998 [1] https://gjs.guide/extensions/review-guidelines/review-guidelines.html#extensions-should-not-force-dispose-a-gobject > EGO036 `lookupByURL` I haven’t seen this mentioned in the review guidelines [2]. Since the lifecycle of the extension instance [3] is the same as that of the GNOME Shell, it should be treated as global, so banning it [4] alongside temporary `gsetting` instances for the same reason is baffling. Although passing global value around everywhere is messy and confusing, if it were also considered `absolutely necessary`, I will fix it next time. [2] https://gjs.guide/extensions/review-guidelines/review-guidelines.html [3] https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/a540670a9f468298fb7ccce6f2544cd4180a4db1/js/extensions/sharedInternals.js#L18 [4] https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/a540670a9f468298fb7ccce6f2544cd4180a4db1/js/ui/extensionSystem.js#L209