Simple todo list, to keep you focused on your daily tasks # Features: - Add/remove/copy tasks - Toggle tasks progress - Toggle with a shortcut (Alt+Shift+Space) - Focus on a specific task (moves the task to the top and highlight it with a background color) Like this extension ? Buy me a coffee: https://buymeacoffee.com/wassimbj2 --- If you have a feature request or bug, please open an issue on github credits: the icon is from flaticon https://www.flaticon.com/free-icons/user-interface
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. Please add GitHub or GitLab url to the `metadata.json`: [EGO Review Guidelines: url](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#metadata-json-must-be-well-formed) 2. `lookupByUUID()` is a bad practice (line 7 `manager.js`). You can send `this` from the entry point to the class needing it when it's possible (dependency injection). 3. Also null out in disable: ```js this.button = null; this.buttonText = null; this.input = null; this.mainBox = null; this.todosBox = null; this._manager = null; ``` [EGO Review Guidelines: Destroy](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects) 4. You should remove the keybinding in disable (line 220 `extension.js`). If you need any help with your extension you can ask us on: - [GNOME Extensions Matrix Channel](https://matrix.to/#/#extensions:gnome.org) - IRC Bridge: irc://irc.gimpnet.org/shell-extensions
btw, we have two other extensions with the same name. Please pick another name to make it more distinctive.