Sticky notes for the GNOME Shell desktop.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
23 | Active |
22 | Active |
21 | Rejected |
20 | Active |
19 | Active |
18 | Active |
17 | Active |
16 | Inactive |
15 | Active |
14 | Active |
13 | Rejected |
12 | Inactive |
11 | Rejected |
10 | Inactive |
9 | Inactive |
8 | Rejected |
7 | Inactive |
6 | Rejected |
5 | Rejected |
4 | Rejected |
3 | Rejected |
2 | Rejected |
1 | Rejected |
I approve this one but please fix these for the next version: 1. Line 102 and 106 (extension.js): Why are you creating gsettings object every time? You have it on `SETTINGS`. Use that instead. 2. About line 362 (extension.js) comment: ```js if (this._timeout_id) { Mainloop.source_remove(this._timeout_id); this._timeout_id = null; } ``` and add this to line 191 (inside timeout callback): ```js this._timeout_id = null; ```