joplin-plugin-heading-navigator 0.2.0 → 0.2.2

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
@@ -8,7 +8,7 @@ A Joplin plugin that provides a simple overlay panel allowing you to navigate an
8
8
  ![heading-navigator-demo](https://github.com/user-attachments/assets/fb0239fe-42a3-4f44-b61b-5fb8ecf7a2ef)
9
9
 
10
10
  > [!important]
11
- > This plugin only works in the markdown editor (editor view or split view). It does not work in the reading view or in the rich text editor.
11
+ > This plugin only works in the markdown editor (editor view or split view). It does not work in the reading view or in the rich text editor. Codemirror 6 only, legacy editor is not supported.
12
12
 
13
13
  ## How to use
14
14
 
@@ -28,11 +28,10 @@ You can filter the list of headings using the search filter at the top of the pa
28
28
  - Navigate through headings with the keyboard
29
29
  - Search filter to filter list of headings
30
30
  - Panel adapts to your Joplin theme
31
+ - Adjustable panel size
31
32
 
32
33
  ### Settings
33
34
 
34
- ### User Configuration
35
-
36
35
  The panel appearance can be customized via Settings | Heading Navigator:
37
36
 
38
37
  - **Panel width**: 240-640px (default: 320px)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-heading-navigator",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "scripts": {
5
5
  "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
6
6
  "prepare": "npm run dist",
@@ -27,7 +27,9 @@
27
27
  "@typescript-eslint/eslint-plugin": "^8.46.2",
28
28
  "@typescript-eslint/parser": "^8.46.2",
29
29
  "@joplin/utils": "^3.5.1",
30
- "@codemirror/lang-markdown": "6.3.1",
30
+ "@codemirror/state": "6.5.2",
31
+ "@codemirror/view": "6.38.6",
32
+ "@lezer/markdown": "1.5.1",
31
33
  "chalk": "^4.1.0",
32
34
  "copy-webpack-plugin": "^13.0.1",
33
35
  "eslint": "^9.38.0",
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 1,
3
3
  "id": "com.bwat47.heading-navigator",
4
4
  "app_min_version": "3.3",
5
- "version": "0.2.0",
5
+ "version": "0.2.2",
6
6
  "name": "Heading Navigator",
7
7
  "description": "Overlay panel to navigate through headings in the markdown editor using the keyboard",
8
8
  "author": "bwat47",
@@ -48,6 +48,6 @@
48
48
  "type": "codeMirrorPlugin"
49
49
  }
50
50
  ],
51
- "_publish_hash": "sha256:274221d7cf5ea1491048e02ee281c1640e66c886da050de899ef879f895cc235",
52
- "_publish_commit": "main:dbcf358aeeede0cfe7f4fd2d6c85b7379d4a4444"
51
+ "_publish_hash": "sha256:d483f38ec00d0046a5af5b5e6f9d4c451afd5ff59a02ecd5d0360fb99dac46dc",
52
+ "_publish_commit": "main:14ee9723f70339ac58c02e854a7c32c71c94e06d"
53
53
  }