joplin-plugin-calendar-notes 2.5.17 → 2.6.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
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
- Click a day to select it; sections below the calendar list that day's tasks and notes.
|
|
10
10
|
- Create Joplin todo tasks for a selected day, complete them from the calendar panel, configure simple recurring tasks, see task reminders, and keep overdue tasks visible in one place.
|
|
11
11
|
- Show undated todo tasks with configured tags in a separate collapsible section.
|
|
12
|
-
-
|
|
12
|
+
- Date and time formats follow Joplin's global settings (Tools → Options → General → Date format / Time format), with simple presets for new note titles.
|
|
13
13
|
- Separate notebooks and nested structures for calendar notes and tasks.
|
|
14
|
-
- Optional note and task templates with placeholders (`{{title}}`, `{{date}}
|
|
14
|
+
- Optional note and task templates with placeholders (`{{title}}`, `{{date}}` in Joplin's date format, `{{time}}` in Joplin's time format, `{{YYYY}}`, `{{MM}}`, `{{dd}}`, `{{date:dd.MM.YYYY}}`, …).
|
|
15
15
|
- Week starts on Monday or Sunday.
|
|
16
16
|
- English and Russian UI.
|
|
17
17
|
|
|
@@ -27,27 +27,27 @@ Joplin **3.5** or newer.
|
|
|
27
27
|
|
|
28
28
|
## Settings
|
|
29
29
|
|
|
30
|
+
Date and time values used by the plugin follow Joplin's global **Date format** and **Time format** (Tools → Options → General); there are no separate plugin settings for them.
|
|
31
|
+
|
|
30
32
|
| Setting | Purpose |
|
|
31
33
|
| --- | --- |
|
|
32
|
-
| Date format | How the date is written in calendar note titles, e.g. `25.01.2026`, `2026-01-25`, `01/25/2026` |
|
|
33
34
|
| New note title | Title preset for notes created by the plugin: date and time, or date with automatic numbering |
|
|
34
35
|
| Week starts on | Monday or Sunday |
|
|
35
36
|
| Notes: notebook | Notebook path for new calendar notes, e.g. `Calendar notes`; missing notebooks are created automatically |
|
|
36
37
|
| Notes: nested notebooks | Optional path inside the notes notebook, e.g. `{{year}}/{{month}}` |
|
|
37
38
|
| Notes: new note template | Joplin note used as a body template for new notes, e.g. `Templates/Calendar note`; template tags are copied to created notes |
|
|
38
39
|
| Tasks: notebook | Notebook path for new active todo tasks, e.g. `Tasks`; missing notebooks are created automatically |
|
|
39
|
-
| Tasks: nested notebooks | Optional path inside the tasks notebook, e.g. `{{year}}/{{month}}` |
|
|
40
40
|
| Tasks: completed notebook | Notebook path where completed tasks are moved, e.g. `Completed tasks`; missing notebooks are created automatically |
|
|
41
41
|
| Tasks: new task template | Joplin note used as a body template for new todo tasks, e.g. `Templates/Calendar task`; template tags are copied to created tasks |
|
|
42
42
|
| Tasks: tags (without date) | Comma-separated tag names for undated todo tasks shown in the calendar panel, e.g. `Watch,Do,Read` |
|
|
43
43
|
|
|
44
44
|
## How notes are matched
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
An item belongs to a day when its title starts with the date written in Joplin's date format, so renamed items like `25.01.2026 meeting` remain visible for that day.
|
|
47
47
|
|
|
48
48
|
## Undated tagged tasks
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
has no Joplin due date, and its title is not matched to any calendar day by Joplin's date format.
|
|
51
51
|
|
|
52
52
|
## Recurring tasks
|
|
53
53
|
|
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.6.0",
|
|
6
6
|
"name": "Calendar Notes",
|
|
7
7
|
"description": "Create notes and tasks for any day in the calendar.",
|
|
8
8
|
"author": "Eugene Lesnov",
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"src": "icons/promo.png",
|
|
31
31
|
"label": "Calendar Notes plugin"
|
|
32
32
|
},
|
|
33
|
-
"_publish_hash": "sha256:
|
|
34
|
-
"_publish_commit": "main:
|
|
33
|
+
"_publish_hash": "sha256:1d2acf0c236742020e469a61164e76f0ec3b3984a1aabf6494b905e51f7cbd0d",
|
|
34
|
+
"_publish_commit": "main:8e430f95f6f72954056a8558063fbe2d71770bdd"
|
|
35
35
|
}
|