joplin-plugin-calendar-notes 2.1.0 → 2.3.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, see task reminders, and keep overdue tasks visible in one place.
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
  - Simple presets for date format and new note titles.
12
- - Automatic notebook structure for new calendar notes using a notebook path and an optional nested structure.
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,20 @@ 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
- | Calendar notes notebook | Notebook path for new notes, e.g. `Calendar Notes`; missing notebooks are created automatically |
35
- | Nested notebook structure | Optional path inside the calendar notes notebook, e.g. `{{year}}/{{month}}` |
36
- | New note template | Joplin note used as a body template for new notes, e.g. `Templates/Calendar note` |
37
- | New task template | Joplin note used as a body template for new todo tasks, e.g. `Templates/Calendar task` |
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 calendar notes 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 the configured calendar notes notebook. If a nested structure is set, missing nested notebooks are created automatically.
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.
44
+
45
+ ## Recurring tasks
46
+
47
+ Recurring tasks are ordinary Joplin todo notes with plugin metadata stored in synced Joplin user data. Use the `↻` button in the calendar panel to choose daily, weekly, monthly, or yearly repetition for a task. When a repeated task is completed, the next one is created. If the task has a reminder, the next task keeps the same reminder offset from the task date, so reminders set before or after the task day stay intentional.
42
48
 
43
49
  ## License
44
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-calendar-notes",
3
- "version": "2.1.0",
3
+ "version": "2.3.0",
4
4
  "description": "Create notes for any day in the calendar",
5
5
  "author": "Eugene Lesnov",
6
6
  "scripts": {
@@ -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.1.0",
5
+ "version": "2.3.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:ea9b31f616b8ebdae0fa9dd7a11d91fe102908b24ae2c36fe478d275cff2b379",
22
- "_publish_commit": "main:cc3f2c7ffbd59b8f4b19d8513e2582dd11217745"
21
+ "_publish_hash": "sha256:bc8621a81155f2c21b393a592ee6b1d78cfef1104a9b0aeb2f2e3365aca768ea",
22
+ "_publish_commit": "main:7b093a37dc8d1151f25e35f00b5b92fc58b8f58d"
23
23
  }