Hide app icons and search entries in GNOME's (42+) overview.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
22 | Active |
21 | Active |
20 | Active |
19 | Active |
18 | Active |
17 | Rejected |
16 | Rejected |
15 | Active |
14 | Active |
13 | Active |
12 | Active |
11 | Active |
10 | Active |
9 | Active |
8 | Active |
7 | Active |
6 | Inactive |
5 | Inactive |
4 | Inactive |
3 | Inactive |
2 | Rejected |
1 | Rejected |
Depdendency injection means, in enable you should send settings to those constructs: ```js this.appMenuPatcher = new AppMenuPatcher(settings); this.appDisplayPatcher = new AppDisplayPatcher(settings); ``` now, in the constructor of those classes: ```js var AppMenuPatcher = class AppMenuPatcher { constructor(settings) { this._settings = settings; } enable { // this._settings.get_strv("hidden-apps"); } // .. } ``` The same for `AppDisplayPatcher`. Wanna fix that and send it again?