diff --git a/CHANGELOG.md b/CHANGELOG.md index 075900f..9014221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added the option to wrap page links in parenthesis when creating tasks with the command. You may find this useful if you primarily use Todoist on mobile where links are less obvious. Thanks to [@ThDag](https://github.com/ThDag) for the contribution! - You can now use the `{{filename}}` placeholder in the filter property. This will be replaced with the name of the file where the query is defined. - For example, if the full file path is `My Vault/Notes/How to Take Smart Notes.md` then the replaced file name will be `How to Take Smart Notes`. -- Create "Add item" button to rendered queries. This will open the task creatio modal. +- Added "Add item" button to rendered queries. This will open the task creation modal. ### 🔁 Changes @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Change the style of the sync button to match the Obsidian style of the "edit" codeblock button. - Fix intent level to match standard markdown levels in order to have consistent style. - Aligned the grouping behaviour with Todoist's when grouping by project. This will be expanded on in a future release. +- Changed all icons to be part of the Lucide set to align with Obsidian. ## [1.11.1] - 2023-04-09 diff --git a/src/components/ObsidianIcon.svelte b/src/components/ObsidianIcon.svelte new file mode 100644 index 0000000..d3757d1 --- /dev/null +++ b/src/components/ObsidianIcon.svelte @@ -0,0 +1,25 @@ + + +
+ + diff --git a/src/components/icons/CalendarIcon.svelte b/src/components/icons/CalendarIcon.svelte deleted file mode 100644 index cd4c699..0000000 --- a/src/components/icons/CalendarIcon.svelte +++ /dev/null @@ -1,17 +0,0 @@ - - - - - diff --git a/src/components/icons/LabelIcon.svelte b/src/components/icons/LabelIcon.svelte deleted file mode 100644 index f4aa055..0000000 --- a/src/components/icons/LabelIcon.svelte +++ /dev/null @@ -1,17 +0,0 @@ - - - - - diff --git a/src/components/icons/ProjectIcon.svelte b/src/components/icons/ProjectIcon.svelte deleted file mode 100644 index 9996ff7..0000000 --- a/src/components/icons/ProjectIcon.svelte +++ /dev/null @@ -1,17 +0,0 @@ - - - - - diff --git a/src/ui/TaskRenderer.svelte b/src/ui/TaskRenderer.svelte index 613cff7..5f93eac 100644 --- a/src/ui/TaskRenderer.svelte +++ b/src/ui/TaskRenderer.svelte @@ -1,8 +1,5 @@