joplin-plugin-my-calendar 1.2.3 → 1.2.5
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 +4 -0
- package/README.md +2 -2
- package/dist/manifest.json +2 -1
- package/manifest.json +2 -1
- package/package.json +10 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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.5](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.4...v1.2.5) (2026-02-01)
|
|
6
|
+
|
|
7
|
+
### [1.2.4](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.3...v1.2.4) (2026-02-01)
|
|
8
|
+
|
|
5
9
|
### [1.2.3](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.2...v1.2.3) (2026-02-01)
|
|
6
10
|
|
|
7
11
|
### 1.2.2 (2026-02-01)
|
package/README.md
CHANGED
|
@@ -207,7 +207,7 @@ The project includes helper scripts in the `scripts/` directory to streamline de
|
|
|
207
207
|
Ensures code quality before packaging. It runs the linter (failing on warnings) and the full test suite.
|
|
208
208
|
|
|
209
209
|
```bash
|
|
210
|
-
./scripts/pre-pack.sh
|
|
210
|
+
bash ./scripts/pre-pack.sh;
|
|
211
211
|
```
|
|
212
212
|
|
|
213
213
|
#### `scripts/release.sh`
|
|
@@ -215,7 +215,7 @@ Ensures code quality before packaging. It runs the linter (failing on warnings)
|
|
|
215
215
|
Automates the entire release workflow: bumps version, syncs manifest, tags, pushes, and publishes to NPM.
|
|
216
216
|
|
|
217
217
|
```bash
|
|
218
|
-
./scripts/release.sh [patch|minor|major]
|
|
218
|
+
bash ./scripts/release.sh [patch|minor|major];
|
|
219
219
|
```
|
|
220
220
|
|
|
221
221
|
### Development Workflow
|
package/dist/manifest.json
CHANGED
|
@@ -2,13 +2,14 @@
|
|
|
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.5",
|
|
6
6
|
"name": "My Calendar",
|
|
7
7
|
"description": "Calendar view from notes with event syntax",
|
|
8
8
|
"author": "Volodymyr Oliinyk",
|
|
9
9
|
"homepage_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
|
|
10
10
|
"repository_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
|
|
11
11
|
"keywords": [
|
|
12
|
+
"joplin-plugin",
|
|
12
13
|
"joplin",
|
|
13
14
|
"plugin",
|
|
14
15
|
"calendar",
|
package/manifest.json
CHANGED
|
@@ -2,13 +2,14 @@
|
|
|
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.5",
|
|
6
6
|
"name": "My Calendar",
|
|
7
7
|
"description": "Calendar view from notes with event syntax",
|
|
8
8
|
"author": "Volodymyr Oliinyk",
|
|
9
9
|
"homepage_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
|
|
10
10
|
"repository_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
|
|
11
11
|
"keywords": [
|
|
12
|
+
"joplin-plugin",
|
|
12
13
|
"joplin",
|
|
13
14
|
"plugin",
|
|
14
15
|
"calendar",
|
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.5",
|
|
4
4
|
"description": "Calendar plugin for Joplin",
|
|
5
5
|
"author": "Volodymyr Oliinyk",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,15 @@
|
|
|
23
23
|
"changelog:preview": "bash scripts/preview-changelog.sh"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
|
-
"joplin-plugin"
|
|
26
|
+
"joplin-plugin",
|
|
27
|
+
"joplin",
|
|
28
|
+
"plugin",
|
|
29
|
+
"calendar",
|
|
30
|
+
"event",
|
|
31
|
+
"my calendar",
|
|
32
|
+
"ics",
|
|
33
|
+
"import",
|
|
34
|
+
"ical"
|
|
27
35
|
],
|
|
28
36
|
"devDependencies": {
|
|
29
37
|
"@eslint/js": "^9.39.2",
|