joplin-plugin-inline-todo 1.5.0 → 1.6.0
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
|
@@ -114,6 +114,13 @@ This is particularly powerful when combined with hieuthi's [table sorting plugin
|
|
|
114
114
|
| Meat delivery | Bob | 2022-03-12 | burgers | Folder 1 | [Note b](:/beef7ed6d91649149751cea8d14af02d)
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
+
## Filtering
|
|
118
|
+
Todos can be filtered such that the plugin will only display Todos from specific notebooks. This can be done by adding notebook names inside the special comment. Notebooks that have a space in their name must be quoted. For example, to limit a search to only "Work" and "Special Project" notebooks, replace the default special comment with.
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
<!-- inline-todo-plugin Work "Special Project" -->
|
|
122
|
+
```
|
|
123
|
+
|
|
117
124
|
|
|
118
125
|
# Roadmap
|
|
119
126
|
I consider this plugin to be finished (it meets my needs). But below are some ideas that I will implement in the future if I have some time.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-inline-todo",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "plugin.calebjohn.todo",
|
|
4
4
|
"app_min_version": "2.7",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.6.0",
|
|
6
6
|
"name": "Inline TODO",
|
|
7
7
|
"description": "Write TODOs *everywhere* and view them in one place.",
|
|
8
8
|
"author": "Caleb John",
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
"todo",
|
|
13
13
|
"productivity"
|
|
14
14
|
],
|
|
15
|
-
"_publish_hash": "sha256:
|
|
16
|
-
"_publish_commit": "master:
|
|
15
|
+
"_publish_hash": "sha256:b92a1f5cd18ad2f7c079c3d98032a9d5c8cadc14ff0ecdd85bdc480374a766fd",
|
|
16
|
+
"_publish_commit": "master:bca3923f93eeb449c410a98e12c7dc064d3c1c17"
|
|
17
17
|
}
|