joplin-plugin-calendar-notes 1.2.1 → 2.0.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
|
@@ -2,20 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
A Joplin plugin that adds a calendar panel for daily notes.
|
|
4
4
|
|
|
5
|
-
## Modes
|
|
6
|
-
|
|
7
|
-
- **Zen** — one note per day. Click a day -> open or create the day's note.
|
|
8
|
-
- **Flow** — multiple notes per day. Click a day -> select it; a section below the calendar lists that day's notes (click to open) and provides a `+ New note` button.
|
|
9
|
-
|
|
10
|
-
Switch modes in **Tools → Options → Calendar Notes**.
|
|
11
|
-
|
|
12
5
|
## Features
|
|
13
6
|
|
|
14
7
|
- Calendar panel toggled from the toolbar or **Tools → Toggle Calendar**.
|
|
15
|
-
- Days with existing notes are highlighted.
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
8
|
+
- Days with existing notes or tasks are highlighted.
|
|
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, and see task reminders.
|
|
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.
|
|
13
|
+
- Optional note and task templates with placeholders (`{{title}}`, `{{date}}`, `{{time}}`, `{{YYYY}}`, `{{MM}}`, `{{dd}}`, `{{date:dd.MM.YYYY}}`, …).
|
|
19
14
|
- Week starts on Monday or Sunday.
|
|
20
15
|
- English and Russian UI.
|
|
21
16
|
|
|
@@ -31,21 +26,19 @@ Joplin **3.5** or newer.
|
|
|
31
26
|
|
|
32
27
|
## Settings
|
|
33
28
|
|
|
34
|
-
| Setting | Purpose
|
|
35
|
-
| ---
|
|
36
|
-
|
|
|
37
|
-
|
|
|
38
|
-
|
|
|
39
|
-
|
|
|
40
|
-
|
|
|
41
|
-
|
|
|
42
|
-
| New
|
|
43
|
-
|
|
44
|
-
Each setting includes inline help in Joplin with the full list of supported tokens.
|
|
29
|
+
| Setting | Purpose |
|
|
30
|
+
| --- | --- |
|
|
31
|
+
| Date format | How the date is written in calendar note titles, e.g. `25.01.2026`, `2026-01-25`, `01/25/2026` |
|
|
32
|
+
| New note title | Title preset for notes created by the plugin: date and time, or date with automatic numbering |
|
|
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` |
|
|
45
38
|
|
|
46
39
|
## How notes are matched
|
|
47
40
|
|
|
48
|
-
Notes are matched
|
|
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.
|
|
49
42
|
|
|
50
43
|
## License
|
|
51
44
|
|
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": "
|
|
5
|
+
"version": "2.0.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:f3616684b157529f116df24c8b9d051d4a4b0464cd7de8b780488eac7de370d3",
|
|
22
|
+
"_publish_commit": "main:313e9c2a4d908d9e756a03ae6a575f4a8e974bdd"
|
|
23
23
|
}
|