joplin-plugin-my-calendar 1.2.3 → 1.2.4

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 CHANGED
@@ -2,6 +2,8 @@
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.4](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.3...v1.2.4) (2026-02-01)
6
+
5
7
  ### [1.2.3](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.2...v1.2.3) (2026-02-01)
6
8
 
7
9
  ### 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
@@ -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.3",
5
+ "version": "1.2.4",
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.3",
5
+ "version": "1.2.4",
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",
3
+ "version": "1.2.4",
4
4
  "description": "Calendar plugin for Joplin",
5
5
  "author": "Volodymyr Oliinyk",
6
6
  "license": "MIT",
@@ -23,7 +23,14 @@
23
23
  "changelog:preview": "bash scripts/preview-changelog.sh"
24
24
  },
25
25
  "keywords": [
26
- "joplin-plugin"
26
+ "joplin",
27
+ "plugin",
28
+ "calendar",
29
+ "event",
30
+ "my calendar",
31
+ "ics",
32
+ "import",
33
+ "ical"
27
34
  ],
28
35
  "devDependencies": {
29
36
  "@eslint/js": "^9.39.2",