joplin-plugin-calendar-notes 2.0.0 → 2.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
|
@@ -7,9 +7,9 @@ A Joplin plugin that adds a calendar panel for daily notes.
|
|
|
7
7
|
- Calendar panel toggled from the toolbar or **Tools → Toggle Calendar**.
|
|
8
8
|
- Days with existing notes or tasks are highlighted.
|
|
9
9
|
- Click a day to select it; sections below the calendar list that day's tasks and notes.
|
|
10
|
-
- Create Joplin todo tasks for a selected day, complete them from the calendar panel,
|
|
10
|
+
- Create Joplin todo tasks for a selected day, complete them from the calendar panel, see task reminders, and keep overdue tasks visible in one place.
|
|
11
11
|
- Simple presets for date format and new note titles.
|
|
12
|
-
-
|
|
12
|
+
- Separate notebooks and nested structures for calendar notes and tasks.
|
|
13
13
|
- Optional note and task templates with placeholders (`{{title}}`, `{{date}}`, `{{time}}`, `{{YYYY}}`, `{{MM}}`, `{{dd}}`, `{{date:dd.MM.YYYY}}`, …).
|
|
14
14
|
- Week starts on Monday or Sunday.
|
|
15
15
|
- English and Russian UI.
|
|
@@ -31,14 +31,16 @@ Joplin **3.5** or newer.
|
|
|
31
31
|
| Date format | How the date is written in calendar note titles, e.g. `25.01.2026`, `2026-01-25`, `01/25/2026` |
|
|
32
32
|
| New note title | Title preset for notes created by the plugin: date and time, or date with automatic numbering |
|
|
33
33
|
| Week starts on | Monday or Sunday |
|
|
34
|
-
|
|
|
35
|
-
|
|
|
36
|
-
|
|
|
37
|
-
|
|
|
34
|
+
| Notes: notebook | Notebook path for new calendar notes, e.g. `Calendar notes`; missing notebooks are created automatically |
|
|
35
|
+
| Notes: nested notebooks | Optional path inside the notes notebook, e.g. `{{year}}/{{month}}` |
|
|
36
|
+
| Notes: new note template | Joplin note used as a body template for new notes, e.g. `Templates/Calendar note` |
|
|
37
|
+
| Tasks: notebook | Notebook path for new todo tasks, e.g. `Tasks`; missing notebooks are created automatically |
|
|
38
|
+
| Tasks: nested notebooks | Optional path inside the tasks notebook, e.g. `{{year}}/{{month}}` |
|
|
39
|
+
| Tasks: new task template | Joplin note used as a body template for new todo tasks, e.g. `Templates/Calendar task` |
|
|
38
40
|
|
|
39
41
|
## How notes are matched
|
|
40
42
|
|
|
41
|
-
Notes and Joplin todo tasks are matched only inside the configured
|
|
43
|
+
Notes are matched only inside the configured notes notebook and its nested notebooks. Joplin todo tasks are matched only inside the configured tasks notebook and its nested notebooks. An item belongs to a day when its title starts with the selected date format, so renamed items like `25.01.2026 meeting` remain visible for that day. New notes and tasks are created in their own configured notebooks. If a nested structure is set, missing nested notebooks are created automatically.
|
|
42
44
|
|
|
43
45
|
## License
|
|
44
46
|
|
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": "2.
|
|
5
|
+
"version": "2.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:fb8e83b1c248fe673daefa62fe22b827de2ce9f95818b74c12b50d8320a3e9d9",
|
|
22
|
+
"_publish_commit": "main:1ef84a3d1c6f2987e7a26481f3718a9b5caf768c"
|
|
23
23
|
}
|