joplin-plugin-tag-navigator 2.6.1 → 2.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -128,6 +128,12 @@ Date tags provide flexible ways to work with dates in your notes, supporting bot
|
|
|
128
128
|
- **Week tags**: Use `#week` for the start of the current week, or add arithmetic like `#week+7` (next week).
|
|
129
129
|
- Example: `#week` becomes `#2025-01-13` (if the current week starts on January 13, 2025)
|
|
130
130
|
- The start day of the week can be configured in settings
|
|
131
|
+
- **Nested date tags**: Date arithmetic works in nested tag structures, enabling dynamic date ranges with semantic context.
|
|
132
|
+
- Example query: `#deadline/#today -> #deadline/#today+30` finds all deadlines in the next 30 days
|
|
133
|
+
- Results like: `#deadline/2025-11-09`, `#deadline/2025-12-09` (date prefix is stripped from nested parts)
|
|
134
|
+
- Example query: `#project/milestone/#week -> #project/milestone/#week+14` finds project milestones in the coming two weeks
|
|
135
|
+
- In notes, write absolute dates directly: `#deadline/2025-12-09`
|
|
136
|
+
- **Note**: To use date arithmetic in nested tags directly in notes (e.g., `#deadline/#today+30`), customize the tag pattern in Settings → Tag Navigator → Tag regex by removing `#` from the exclusion list: `/(?<=^|\s)#([^\s'",.()\[\]:;\?\\]+)/g`
|
|
131
137
|
|
|
132
138
|
#### Converting relative to absolute dates
|
|
133
139
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-tag-navigator",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
Binary file
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"desktop",
|
|
7
7
|
"mobile"
|
|
8
8
|
],
|
|
9
|
-
"version": "2.6.
|
|
9
|
+
"version": "2.6.3",
|
|
10
10
|
"name": "Inline Tag Navigator",
|
|
11
11
|
"description": "Type inline tags or frontmatter in the note editor. View your tagged paragraphs and tasks / TODOs in a search panel, or in a generated note / kanban. Build a table view / database from notes and tags. Convert between Obsidian tags and Joplin tags.",
|
|
12
12
|
"author": "Alon Diament",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
],
|
|
25
25
|
"screenshots": [],
|
|
26
26
|
"icons": {},
|
|
27
|
-
"_publish_hash": "sha256:
|
|
28
|
-
"_publish_commit": "main:
|
|
27
|
+
"_publish_hash": "sha256:c60330841d5e155f60d51174e99b6c69e08f7da4e0c4d597cf3e89f1dd6f36a6",
|
|
28
|
+
"_publish_commit": "main:805d172a6683f22e19a38702fe35351418eff4a9"
|
|
29
29
|
}
|