joplin-plugin-calendar-notes 1.1.1 → 1.1.3
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
|
-
- Configurable target notebook path
|
|
17
|
+
- Configurable target notebook path for new calendar notes.
|
|
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,14 @@ 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 notebook path | Existing notebook path where new notes are created, e.g. `Calendar Notes/2026`; leave empty to use the selected notebook |
|
|
41
41
|
| New calendar note template path | Joplin note used as a body template, e.g. `Templates/Calendar note` |
|
|
42
42
|
|
|
43
43
|
Each setting includes inline help in Joplin with the full list of supported tokens.
|
|
44
44
|
|
|
45
45
|
## How notes are matched
|
|
46
46
|
|
|
47
|
-
Notes are matched globally by title using the configured format. New notes are created in the configured notebook path
|
|
47
|
+
Notes are matched globally by title using the configured format. New notes are created in the configured notebook path if it exists, or in the selected notebook if the path is empty.
|
|
48
48
|
|
|
49
49
|
## License
|
|
50
50
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-calendar-notes",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Create notes for any day in the calendar",
|
|
5
5
|
"author": "Eugene Lesnov",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
8
8
|
"prepare": "npm run dist",
|
|
9
9
|
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
|
|
10
|
-
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force"
|
|
10
|
+
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
|
|
11
|
+
"version": "node scripts/sync-manifest-version.js && git add src/manifest.json"
|
|
11
12
|
},
|
|
12
13
|
"license": "MIT",
|
|
13
14
|
"keywords": [
|
|
Binary file
|
|
@@ -2,17 +2,22 @@
|
|
|
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.1.3",
|
|
6
6
|
"name": "Calendar Notes",
|
|
7
7
|
"description": "Create notes for any day in the calendar.",
|
|
8
8
|
"author": "Eugene Lesnov",
|
|
9
|
-
"homepage_url": "",
|
|
10
|
-
"repository_url": "",
|
|
11
|
-
"keywords": [
|
|
12
|
-
|
|
9
|
+
"homepage_url": "https://github.com/eugene-lesnov/joplin-plugin-calendar-notes",
|
|
10
|
+
"repository_url": "https://github.com/eugene-lesnov/joplin-plugin-calendar-notes",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"calendar",
|
|
13
|
+
"navigation"
|
|
14
|
+
],
|
|
15
|
+
"categories": [
|
|
16
|
+
"productivity"
|
|
17
|
+
],
|
|
13
18
|
"screenshots": [],
|
|
14
19
|
"icons": {},
|
|
15
20
|
"promo_tile": {},
|
|
16
|
-
"_publish_hash": "sha256:
|
|
17
|
-
"_publish_commit": "main:
|
|
21
|
+
"_publish_hash": "sha256:e2cb45cd68617d93eb22517bf2acf145fc1ca1a3f60656a36914f79190d462a6",
|
|
22
|
+
"_publish_commit": "main:84408c33c7c14a4172b726703cfefae6c357f672"
|
|
18
23
|
}
|