Display tasks next to the calendar widget. Visit our Wiki page for more information and troubleshooting.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
22 | Active |
21 | Inactive |
20 | Active |
19 | Active |
18 | Rejected |
17 | Rejected |
16 | Active |
15 | Inactive |
14 | Inactive |
13 | Inactive |
12 | Inactive |
11 | Inactive |
10 | Inactive |
9 | Inactive |
8 | Inactive |
7 | Inactive |
6 | Inactive |
5 | Inactive |
4 | Inactive |
3 | Inactive |
2 | Inactive |
1 | Rejected |
I started using a code formatter, hence the abundance of changes. In reality, only minor adjustments were made according to the port guide on gjs.guide. Thank you for reviewing this.
1. You should remove the timeouts on disable (line 344 utils.js): https://gjs.guide/extensions/review-guidelines/review-guidelines.html#remove-main-loop-sources 2. Don't use imports in 45 extensions: - line 11 utils.js - line 30 extension.js - line 22 prefs.js 3. `Extension.lookupByURL()` is a bad practice (line 42 extension.js, line 71 prefs.js). You should use `this.getSettings()` in the entry point and pass it to the class instances (dependency injection).