Skip to content

Commit

Permalink
release v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebrynes7 committed Jan 24, 2021
1 parent c86431c commit be86a3b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.7.0] - 2021-01-24

### ✨ Features

- Markdown within tasks is now rendered as part of the task. This means that bold, italics and inline code blocks are supported, as are links (both internal and external).
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

An experimental [Obsidian](https://obsidian.md/) plugin to materialize [Todoist](https://todoist.com/) task lists in Obsidian notes.

_Tested with Obsidian 0.10.6 your results may vary!_
_Tested with Obsidian 0.10.9 your results may vary!_

![Example gif](./assets/obsidian-todoist-sync.gif)

Expand All @@ -29,13 +29,13 @@ _Tested with Obsidian 0.10.6 your results may vary!_

## Inputs

| Name | Required | Description | Type | Default |
| ------------- | :------: | ----------------------------------------------------------------------------------------------------------------- | -------- | ------- |
| `name` | ✓ | The title for the materialized query. | string | |
| `filter` | ✓ | A valid [Todoist filter](https://get.todoist.help/hc/en-us/articles/205248842-Filters)<sup>[1](#footnote-1)</sup> | string | |
| `autorefresh` | | The number of seconds between auto-refreshing. If omitted, the query use the default global settings. | number | null |
| `sorting` | | Describes how to order the tasks in the query. Can be any of 'priority' or 'date', or multiple. | string[] | [] |
| `group` | | Denotes whether this query should have its task grouped by project & section. | bool | false |
| Name | Required | Description | Type | Default |
| ------------- | :------: | -------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------- |
| `name` | ✓ | The title for the materialized query. You can use the `{task_count}` template which will be replaced by the number of tasks returned by the query. | string | |
| `filter` | ✓ | A valid [Todoist filter](https://get.todoist.help/hc/en-us/articles/205248842-Filters)<sup>[1](#footnote-1)</sup> | string | |
| `autorefresh` | | The number of seconds between auto-refreshing. If omitted, the query use the default global settings. | number | null |
| `sorting` | | Describes how to order the tasks in the query. Can be any of 'priority' or 'date', or multiple. | string[] | [] |
| `group` | | Denotes whether this query should have its task grouped by project & section. | bool | false |

## Commands

Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "todoist-sync-plugin",
"name": "Todoist Plugin",
"version": "1.6.2",
"minAppVersion": "0.10.6",
"version": "1.7.0",
"minAppVersion": "0.10.8",
"description": "Materialize Todoist tasks within Obsidian notes.",
"author": "Jamie Brynes",
"authorUrl": "https://github.com/jamiebrynes7/obsidian-todoist-plugin",
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": "todoist-plugin",
"version": "1.6.2",
"version": "1.7.0",
"description": "A Todoist plugin for Obsidian",
"main": "src/index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"1.7.0": "0.10.8",
"1.6.2": "0.10.6",
"1.6.1": "0.10.6",
"1.6.0": "0.10.2",
Expand Down

0 comments on commit be86a3b

Please sign in to comment.