Integrates a category-based application launcher in the activities window. IMPORTANT: it needs the 'gnome-menus' and 'libgnome-menu-3-dev'; they must be installed in the system before installing this extension.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
42 | Active |
41 | Active |
40 | Inactive |
39 | Inactive |
38 | Rejected |
37 | Active |
36 | Inactive |
35 | Inactive |
34 | Inactive |
33 | Inactive |
32 | Inactive |
31 | Active |
30 | Inactive |
29 | Inactive |
28 | Rejected |
27 | Inactive |
26 | Inactive |
25 | Inactive |
24 | Inactive |
23 | Inactive |
22 | Inactive |
21 | Inactive |
20 | Active |
19 | Inactive |
18 | Active |
17 | Rejected |
16 | Active |
15 | Rejected |
14 | Inactive |
13 | Inactive |
12 | Rejected |
11 | Rejected |
10 | Inactive |
9 | Inactive |
8 | Inactive |
7 | Inactive |
6 | Rejected |
5 | Rejected |
4 | Rejected |
3 | Rejected |
2 | Inactive |
1 | Rejected |
1. Don't use generic name for the class you are exporting (line 8 prefs.js). 2. Also do this in disable: ```js this._appSys = null; this._settings = null; this._appsInnerContainer = null; this.selected = null; this._favorites = null; ``` 3. You should make settings local (line 11 prefs.js) because that won't get garbage collected. attach it to the window after madking it local: ```js window._settings = this.getSettings(); ``` You can pass settings to the methods needed that. For example: ```js buildSwitcher(key, labeltext, settings) { // ^^^^^^^^ ``` 4. Unused method (line 54 prefs.js). 5. Also disconnect that on disable (line 74 extension.js): https://gjs.guide/extensions/review-guidelines/review-guidelines.html#disconnect-all-signals 6. What's the reason for `this.isEnabled` (line 189 extension.js)? As we stated in the review guidelines: > Extensions MUST NOT disable selectively. https://gjs.guide/extensions/review-guidelines/review-guidelines.html#session-modes