Skip to content

Commit

Permalink
Update to version 7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
claremacrae committed May 17, 2024
1 parent ecdf1d5 commit d02aab8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/Advanced/Tasks Api.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Screenshot of QuickAdd capture settings (example)
## `executeToggleTaskDoneCommand: (line: string, path: string) => string;`

> [!released]
> This method was introduced in Tasks X.Y.Z.
> This method was introduced in Tasks 7.2.0.
Executes the 'Tasks: Toggle task done' command on the supplied line string. It toggles and updates a task line according to a user's preferences, accounting for recurrence rules and completed status. It returns a string representing the toggled task.

Expand All @@ -134,7 +134,7 @@ console.log(result); // "- [x] This is a task 📅 2024-04-24 ✅ 2024-04-23"
## Auto-Suggest Integration

> [!released]
> This integration was introduced in Tasks X.Y.Z.
> This integration was introduced in Tasks 7.2.0.
Plugins that [extend Obsidian's markdown editor](https://gist.github.com/Fevol/caa478ce303e69eabede7b12b2323838) can control if and when Tasks' [[Auto-Suggest]] displays by implementing a `showTasksPluginAutoSuggest` method on the extended editor class. This method must adhere the function definition below.

Expand Down
2 changes: 1 addition & 1 deletion docs/Editing/Toggling and Editing Statuses.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Obsidian allows you to assign a [hotkey](https://help.obsidian.md/Customization/
| In Tasks query search results | Live Preview ||
| In Tasks query search results | Reading mode ||

Since Tasks X.Y.Z, this command can also be triggered programmatically via the [[Tasks Api#`executeToggleTaskDoneCommand (line string, path string) => string;`|Tasks API]].
Since Tasks 7.2.0, this command can also be triggered programmatically via the [[Tasks Api#`executeToggleTaskDoneCommand (line string, path string) => string;`|Tasks API]].

## Edit task modal

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-tasks-plugin",
"name": "Tasks",
"version": "7.1.0",
"version": "7.2.0",
"minAppVersion": "1.1.1",
"description": "Task management for Obsidian",
"helpUrl": "https://publish.obsidian.md/tasks/",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-tasks",
"version": "7.1.0",
"version": "7.2.0",
"description": "Task management for the Obsidian knowledge base",
"main": "main.js",
"engines": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,6 @@
"6.1.2": "1.1.1",
"6.2.0": "1.1.1",
"7.0.0": "1.1.1",
"7.1.0": "1.1.1"
"7.1.0": "1.1.1",
"7.2.0": "1.1.1"
}

0 comments on commit d02aab8

Please sign in to comment.