Releases: obsidian-tasks-group/obsidian-tasks
Releases · obsidian-tasks-group/obsidian-tasks
1.1.0
1.0.2
1.0.1
Changes
- Fixed a bug where the cursors wouldn't move as expected when using the toggle command (#137)
- The toggle command now converts any non-list line to a list item (#132)
Details: Toggling now places the cursor correctly
The cursor now moves to the end of the line if a new list item or checklist item is created. Otherwise, it stays in the position in the text where it was. It now correctly moves to the right to stay in the relative position in the text.
1.0.0
0.8.3
Changes
- Tasks now actively checks that you toggle a task in a markdown file.
- Only files with the file extension
.md
are allowed.
- Only files with the file extension
0.8.2
Changes
- Query results are now re-rendered after midnight (#107)
- Toggling a task now keeps the cursor position
- You can now set obsidian tasks' actions in the mobile toolbar (icon still generic) (#71)
- Fixed a bug where rendered results weren't updated when a file was renamed or deleted
Internal
- File updates now read from the file system
- Use obsidian's moment instead of bundling our own
- Replace all usages of innerHTML
- Switch obsidian dependency to packaged version
0.8.1
Changes
- Query results are now sorted first by status (todo before done) (#83)
- Fixed a bug where a query would still list tasks from a file if the file did not include any list elements anymore (#86)
- Fixed a bug where a task could sometimes not be toggled (#87)
- Styling is now easier since
ul
(query result) andli
(everywhere) elements of tasks have specific classes (#91)ul
:plugin-tasks-query-result
li
:plugin-tasks-list-item
0.8.0
Changes
- You can now limit query results to a specific number of tasks (#76)
- You can now filter query results by heading (#35)
- You can now use relative dates in your query filters (#1)
This is an example of what is now possible:
```tasks
not done
due after yesterday
due before in two weeks
heading includes task
limit to 10 tasks
```
Meaning “the first ten open tasks that are due within the next two weeks (starting today (after yesterday)) and where the heading includes task
(for example ## Tasks
)”.
See the README for all the details.