joplin-plugin-inline-todo-gui 1.2.4
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
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Inline TODO Quick Add (Joplin plugin)
|
|
2
|
+
|
|
3
|
+
A small GUI so you never have to hand-type inline-TODO markdown again.
|
|
4
|
+
|
|
5
|
+
It pairs with the **Inline TODO** plugin by calebjohn (`plugin.calebjohn.todo`),
|
|
6
|
+
which scans your notes for `@TODO` checkbox lines and builds a summary note.
|
|
7
|
+
This plugin just adds the *front end*: a form that writes the correctly
|
|
8
|
+
formatted line for you.
|
|
9
|
+
|
|
10
|
+
## What it does
|
|
11
|
+
|
|
12
|
+
Click the toolbar button (editor toolbar), use **Tools → Add Inline TODO…**,
|
|
13
|
+
or press **Ctrl/Cmd+Alt+T**. A dialog opens with:
|
|
14
|
+
|
|
15
|
+
- **Task** text field
|
|
16
|
+
- **Due date** picker (optional calendar input)
|
|
17
|
+
- **Tags** field (optional, space or comma separated, no `+` needed)
|
|
18
|
+
|
|
19
|
+
The line is inserted at your cursor **in the note you currently have open**,
|
|
20
|
+
so it stays in that note's notebook. On **Insert**, it drops a line like this:
|
|
21
|
+
|
|
22
|
+
```markdown
|
|
23
|
+
- [ ] @TODO Call Scott about Brookfield //2026-07-08 +BOB +DealFlow
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
The calebjohn plugin then picks it up under **Tools → Create TODO summary note**.
|
|
27
|
+
|
|
28
|
+
## Settings
|
|
29
|
+
|
|
30
|
+
**Tools → Options → Inline TODO Quick Add**:
|
|
31
|
+
|
|
32
|
+
- **Task keyword** – default `@TODO`.
|
|
33
|
+
- **Put due date before tags** – controls whether the line reads
|
|
34
|
+
`@TODO text //date +tags` (on) or `@TODO text +tags //date` (off).
|
|
35
|
+
|
|
36
|
+
## Install
|
|
37
|
+
|
|
38
|
+
Ready-to-install build: [`publish/com.dejoyf.inlineTodoGui.jpl`](publish/com.dejoyf.inlineTodoGui.jpl).
|
|
39
|
+
|
|
40
|
+
In Joplin: **Tools → Options → Plugins → Install from file** → pick the `.jpl`,
|
|
41
|
+
then restart Joplin.
|
|
42
|
+
|
|
43
|
+
> Insertion targets the **Markdown editor** (CodeMirror). If you use the rich
|
|
44
|
+
> text editor, switch to Markdown for the note before inserting.
|
|
45
|
+
|
|
46
|
+
## Build from source
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npm install
|
|
50
|
+
npm run dist # outputs publish/com.dejoyf.inlineTodoGui.jpl
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Scaffolded from the official `generator-joplin` template; only `src/` is custom.
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "joplin-plugin-inline-todo-gui",
|
|
3
|
+
"version": "1.2.4",
|
|
4
|
+
"description": "Convert the text at your cursor into an @TODO checkbox with an optional due date (calendar) and tags, in both the Markdown and Rich Text editors. Companion to the Inline TODO plugin (plugin.calebjohn.todo).",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
7
|
+
"prepare": "npm run dist",
|
|
8
|
+
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
|
|
9
|
+
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"joplin-plugin"
|
|
14
|
+
],
|
|
15
|
+
"files": [
|
|
16
|
+
"publish"
|
|
17
|
+
],
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "^18.7.13",
|
|
20
|
+
"chalk": "^4.1.0",
|
|
21
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
22
|
+
"fs-extra": "^10.1.0",
|
|
23
|
+
"glob": "^8.0.3",
|
|
24
|
+
"tar": "^6.1.11",
|
|
25
|
+
"ts-loader": "^9.3.1",
|
|
26
|
+
"typescript": "^4.8.2",
|
|
27
|
+
"webpack": "^5.74.0",
|
|
28
|
+
"webpack-cli": "^4.10.0"
|
|
29
|
+
},
|
|
30
|
+
"author": "Frank DeJoy",
|
|
31
|
+
"homepage": "https://github.com/dejoyf-jpg/homelab/tree/main/plugins/joplin-inline-todo-gui",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/dejoyf-jpg/homelab.git"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": 1,
|
|
3
|
+
"id": "com.dejoyf.inlineTodoGui",
|
|
4
|
+
"app_min_version": "3.0.0",
|
|
5
|
+
"version": "1.2.4",
|
|
6
|
+
"name": "Inline TODO Quick Add",
|
|
7
|
+
"description": "Place your cursor in front of a task in a note, run the command, and it converts the text to the right of the cursor into an @TODO line with an optional due date (defaults to tomorrow, with a click-to-pick calendar) and tags. Pairs with the Inline TODO plugin (plugin.calebjohn.todo).",
|
|
8
|
+
"author": "Frank DeJoy",
|
|
9
|
+
"homepage_url": "https://github.com/dejoyf-jpg/homelab/tree/main/plugins/joplin-inline-todo-gui",
|
|
10
|
+
"repository_url": "https://github.com/dejoyf-jpg/homelab",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"todo",
|
|
13
|
+
"task",
|
|
14
|
+
"inline-todo",
|
|
15
|
+
"checkbox",
|
|
16
|
+
"gui"
|
|
17
|
+
],
|
|
18
|
+
"categories": [
|
|
19
|
+
"productivity"
|
|
20
|
+
],
|
|
21
|
+
"screenshots": [],
|
|
22
|
+
"icons": {},
|
|
23
|
+
"promo_tile": {},
|
|
24
|
+
"platforms": [
|
|
25
|
+
"desktop"
|
|
26
|
+
],
|
|
27
|
+
"_publish_hash": "sha256:1116efb7e0f17870cdb140d692b0ec409f2445ce25327927ceb3c3ed2d24bd08",
|
|
28
|
+
"_publish_commit": "main:af7e36c0726cdd7f28fa11a9bed62d589c60283d"
|
|
29
|
+
}
|