joplin-plugin-calendar-notes 1.1.3 → 1.2.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
|
@@ -14,7 +14,7 @@ Switch modes in **Tools → Options → Calendar Notes**.
|
|
|
14
14
|
- Calendar panel toggled from the toolbar or **Tools → Toggle Calendar**.
|
|
15
15
|
- Days with existing notes are highlighted.
|
|
16
16
|
- Configurable note title formats (Zen and Flow).
|
|
17
|
-
-
|
|
17
|
+
- Automatic notebook structure for new calendar notes using a root path and an optional date-based path pattern.
|
|
18
18
|
- Optional template note with placeholders (`{{title}}`, `{{date}}`, `{{time}}`, `{{YYYY}}`, `{{MM}}`, `{{dd}}`, `{{date:dd.MM.YYYY}}`, …).
|
|
19
19
|
- Week starts on Monday or Sunday.
|
|
20
20
|
- English and Russian UI.
|
|
@@ -37,14 +37,15 @@ Joplin **3.5** or newer.
|
|
|
37
37
|
| Zen mode title format | Title for the day's note, e.g. `{{YYYY-MM-dd}}` |
|
|
38
38
|
| Flow mode title format | Title for each Flow note; must contain `{{zenModeTitle}}`, e.g. `{{zenModeTitle}} - {{time}}` |
|
|
39
39
|
| Week starts on | Monday or Sunday |
|
|
40
|
-
| Calendar notes notebook path |
|
|
40
|
+
| Calendar notes root notebook path | Root notebook path for new notes, e.g. `Calendar Notes`; missing notebooks are created automatically |
|
|
41
|
+
| Calendar notes path pattern | Optional relative path under the root, e.g. `{{year}}/{{month}}`; leave empty to create notes directly in the root notebook |
|
|
41
42
|
| New calendar note template path | Joplin note used as a body template, e.g. `Templates/Calendar note` |
|
|
42
43
|
|
|
43
44
|
Each setting includes inline help in Joplin with the full list of supported tokens.
|
|
44
45
|
|
|
45
46
|
## How notes are matched
|
|
46
47
|
|
|
47
|
-
Notes are matched globally by title using the configured format. New notes are created
|
|
48
|
+
Notes are matched globally by title using the configured format. New notes are created under the configured root notebook path. If a path pattern is set, missing nested notebooks are created automatically.
|
|
48
49
|
|
|
49
50
|
## License
|
|
50
51
|
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.github.eugenelesnov.CalendarNotes",
|
|
4
4
|
"app_min_version": "3.5",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.2.0",
|
|
6
6
|
"name": "Calendar Notes",
|
|
7
7
|
"description": "Create notes for any day in the calendar.",
|
|
8
8
|
"author": "Eugene Lesnov",
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"screenshots": [],
|
|
19
19
|
"icons": {},
|
|
20
20
|
"promo_tile": {},
|
|
21
|
-
"_publish_hash": "sha256:
|
|
22
|
-
"_publish_commit": "main:
|
|
21
|
+
"_publish_hash": "sha256:4775833f902ea82da4f4d955e1efcf539ff1a3d27644fff6c635c2b90b83d948",
|
|
22
|
+
"_publish_commit": "main:235d018ea0a845443e4c2656f8b5e971330f131a"
|
|
23
23
|
}
|