joplin-plugin-my-calendar 1.2.5 → 1.2.7
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/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/dist/manifest.json +1 -1
- package/manifest.json +1 -1
- package/package.json +10 -6
- package/publish/.gitignore +6 -0
- package/publish/.npmignore +2 -0
- package/publish/com.volodymyroliinyk.joplin.plugin.my-calendar.jpl +0 -0
- package/publish/com.volodymyroliinyk.joplin.plugin.my-calendar.json +29 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.2.7](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.6...v1.2.7) (2026-02-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
* ensure publish folder is included in npm package ([213f287](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/commit/213f28721fbd041804e96351bb6b2dbf8d04e28c))
|
|
11
|
+
|
|
12
|
+
### [1.2.6](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.5...v1.2.6) (2026-02-02)
|
|
13
|
+
|
|
5
14
|
### [1.2.5](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.4...v1.2.5) (2026-02-01)
|
|
6
15
|
|
|
7
16
|
### [1.2.4](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.3...v1.2.4) (2026-02-01)
|
package/README.md
CHANGED
|
@@ -221,7 +221,7 @@ bash ./scripts/release.sh [patch|minor|major];
|
|
|
221
221
|
### Development Workflow
|
|
222
222
|
|
|
223
223
|
For a detailed guide on branch naming, commit message formats, and the release process, please see the *
|
|
224
|
-
*[Development Workflow Guide](./WORKFLOW.md)**.
|
|
224
|
+
*[Development Workflow Guide](./docs/WORKFLOW.md)**.
|
|
225
225
|
|
|
226
226
|
### Security First:
|
|
227
227
|
|
package/dist/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.volodymyroliinyk.joplin.plugin.my-calendar",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.7",
|
|
6
6
|
"name": "My Calendar",
|
|
7
7
|
"description": "Calendar view from notes with event syntax",
|
|
8
8
|
"author": "Volodymyr Oliinyk",
|
package/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.volodymyroliinyk.joplin.plugin.my-calendar",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.7",
|
|
6
6
|
"name": "My Calendar",
|
|
7
7
|
"description": "Calendar view from notes with event syntax",
|
|
8
8
|
"author": "Volodymyr Oliinyk",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-my-calendar",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "Calendar plugin for Joplin",
|
|
5
5
|
"author": "Volodymyr Oliinyk",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,14 +11,15 @@
|
|
|
11
11
|
},
|
|
12
12
|
"main": "dist/index.js",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"clean": "rm -rf dist node_modules package-lock.json",
|
|
15
14
|
"build": "webpack",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
15
|
+
"build:jpl": "npm run build && mkdir -p publish && cd dist && tar --format=ustar -cf ../publish/com.volodymyroliinyk.joplin.plugin.my-calendar.jpl manifest.json index.js ui && cp manifest.json ../publish/com.volodymyroliinyk.joplin.plugin.my-calendar.json",
|
|
16
|
+
"prepack": "npm run build:jpl",
|
|
17
|
+
"prepare": "husky",
|
|
18
|
+
"clean": "rm -rf dist node_modules package-lock.json",
|
|
19
|
+
"dist": "npm run build:jpl",
|
|
18
20
|
"test": "(TZ=UTC jest && echo \"$(date +%s)|PASS\" > .test-status) || (echo \"$(date +%s)|FAIL\" > .test-status && exit 1)",
|
|
19
21
|
"test:watch": "jest --watch",
|
|
20
22
|
"lint": "eslint .",
|
|
21
|
-
"prepare": "husky",
|
|
22
23
|
"release": "standard-version",
|
|
23
24
|
"changelog:preview": "bash scripts/preview-changelog.sh"
|
|
24
25
|
},
|
|
@@ -55,7 +56,10 @@
|
|
|
55
56
|
"dist/index.js",
|
|
56
57
|
"dist/ui",
|
|
57
58
|
"dist/manifest.json",
|
|
59
|
+
"publish/**",
|
|
58
60
|
"manifest.json",
|
|
59
|
-
"CHANGELOG.md"
|
|
61
|
+
"CHANGELOG.md",
|
|
62
|
+
"README.md",
|
|
63
|
+
"LICENSE"
|
|
60
64
|
]
|
|
61
65
|
}
|
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": 1,
|
|
3
|
+
"id": "com.volodymyroliinyk.joplin.plugin.my-calendar",
|
|
4
|
+
"app_min_version": "3.3",
|
|
5
|
+
"version": "1.2.7",
|
|
6
|
+
"name": "My Calendar",
|
|
7
|
+
"description": "Calendar view from notes with event syntax",
|
|
8
|
+
"author": "Volodymyr Oliinyk",
|
|
9
|
+
"homepage_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
|
|
10
|
+
"repository_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"joplin-plugin",
|
|
13
|
+
"joplin",
|
|
14
|
+
"plugin",
|
|
15
|
+
"calendar",
|
|
16
|
+
"event",
|
|
17
|
+
"my calendar",
|
|
18
|
+
"ics",
|
|
19
|
+
"import",
|
|
20
|
+
"ical"
|
|
21
|
+
],
|
|
22
|
+
"platforms": [
|
|
23
|
+
"desktop",
|
|
24
|
+
"mobile"
|
|
25
|
+
],
|
|
26
|
+
"permissions": [
|
|
27
|
+
"notes"
|
|
28
|
+
]
|
|
29
|
+
}
|