joplin-plugin-inline-todo 1.1.0 → 1.1.1
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
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# Inline TODOs
|
|
2
2
|
A plugin that allows you to manage your TODOs anywhere in your notes and view a summary in one place.
|
|
3
3
|
|
|
4
|
-
This plugin was initially written before the plugin system and interacted with Joplin through the API. I've been using it like that for the last few years. I finally took the time to translate it
|
|
4
|
+
This plugin was initially written before the plugin system and interacted with Joplin through the API. I've been using it like that for the last few years. I finally took the time to translate it for the official Plugin system. Its implementation is pretty specific to my workflow and I don't plan to update it much, as it works for me.
|
|
5
|
+
|
|
6
|
+
The basic function of this plugin is to have a single note where you can view all your inline TODOs. This single note is identified by containing the following special comment `<!-- inline-todo-plugin -->`. This comment can be inserted by pressing `Tools -> Create TODO summary note`. Be careful not to place this in an existing note as the plugin will overwrite everything.
|
|
5
7
|
|
|
6
8
|
# Installation
|
|
7
9
|
- Go to `Tools -> Options -> Plugins`(macOS: Joplin -> Preferences -> Plugins)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-inline-todo",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
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.1.
|
|
5
|
+
"version": "1.1.1",
|
|
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:d79daf79f31d87cad32c92a9e57720c20ac0f2383d26d8f6e43b196a351746a4",
|
|
16
|
+
"_publish_commit": "master:99da2cead81dd5f84bf11fe8cfea6df81bb582de"
|
|
17
17
|
}
|