Hey all! Here's another hotfix which allows not to specify rootNotebookPath
com.mablin7.test.kanban.jpl (1.6 MB)
@bepolymathe Sorry, I wrote the progress report in a hurry and forgot to actually include usage instructions. So here it is:
Installation
- Download the .jpl file
- Open Joplin > Tools > Options > Plugins > Gear icon > Install from file
- Select the file you downloaded
- Restart Joplin
Usage
- Create a new note anywhere. This will be the "board note"
- Paste this basic config into your board note
```kanban
columns:
-
name: Backlog
backlog: true
-
name: Working
tag: wip
-
name: Done
completed: true
tag: done
```
- Switch to another note and switch back, or restart Joplin. (this will be improved soon!)
- Now you should see the board open on the right side with all your notes, which were in the same notebook as the board.
- Drag the notes around and see their tags update.
You can also try notebook-based columns instead of tag based ones. Replace the config with this:
```kanban
columns:
-
name: Backlog
backlog: true
-
name: Working
notebookPath: wip
-
name: Done
completed: true
notebookPath: done
```
Make sure that the notebooks you specify here exists in the same notebook where the board is!
Example notebook structure:
📁 board
├─ 🗒️ board note
├─ 🗒️ backlog notes/tasks...
├─ 📁 wip
│ ├─ 🗒️ wip notes/tasks...
├─ 📁 done
│ ├─ 🗒️ done notes/tasks...