Skip to content

Commit

Permalink
Fix block News
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolo committed May 13, 2024
1 parent 0c708ab commit d76acf5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.0.3](https://github.com/Nikolo/obsidian-setting-pack/releases/tag/v0.0.3) (2024-05-14)

Fix block news in 121 template

Migrate helper
```
find ./MeetingNotes/121/ -not -regex '.*\.obsidian.*' -name '*.md' -exec sed -z -i -e 's/and (\s\+contains(join(people), "` +
name + `")\s\+or contains(meta(section).subpath, "` + name + `")\s\+)\s\+//' {} \;
```

## [0.0.2](https://github.com/Nikolo/obsidian-setting-pack/releases/tag/v0.0.2) (2024-05-13)

[Full Changelog](https://github.com/Nikolo/obsidian-setting-pack/compare/v0.0.1...v0.0.2)
Expand All @@ -10,6 +20,7 @@ Migrate halper

```
find ./ -not -regex '.*\.obsidian.*' -name '*.md' -exec sed -i -e "s/due/scheduled/" {} \;
find ./ -not -regex '.*\.obsidian.*' -name '*.md' -exec sed -i -e "s/📅/⏳/" {} \;
```

## Initial Release [0.0.1](https://github.com/Nikolo/obsidian-setting-pack/releases/tag/v0.0.1) (2024-05-13)
4 changes: 0 additions & 4 deletions templates/core/121.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ if (dv.current().date != null) {
const tsks_query = `
task
WHERE completed
and (
contains(join(people), "` + name + `")
or contains(meta(section).subpath, "` + name + `")
)
and completion <= date("` + dv.current().date.toISODate() + `")
and completion >= date("` + last_121_date +`")`
const tsks = await dv.tryQuery(tsks_query);
Expand Down

0 comments on commit d76acf5

Please sign in to comment.