joplin-plugin-heading-navigator 0.6.0 → 0.6.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
@@ -5,7 +5,9 @@
5
5
 
6
6
  A Joplin plugin that provides a simple overlay panel allowing you to navigate and filter headings in the markdown editor, inspired by sublime text's "go to symbol" function.
7
7
 
8
- ![heading-navigator-demo](https://github.com/user-attachments/assets/c58e8c22-08fd-4041-acbb-c678d8de76ac)
8
+ <img src="https://github.com/user-attachments/assets/c58e8c22-08fd-4041-acbb-c678d8de76ac" alt="heading-navigator-demo" width="1262" height="918" />
9
+
10
+ <img src="https://github.com/user-attachments/assets/b6dc9106-8b61-4d51-92d6-c8bc6357b9e1" alt="mobile_example" width="200" height="445" />
9
11
 
10
12
  > [!important]
11
13
  > 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.
@@ -33,7 +35,7 @@ You can filter the list of headings using the search filter at the top of the pa
33
35
 
34
36
  ### Settings
35
37
 
36
- The panel appearance can be customized via Settings | Heading Navigator:
38
+ The panel appearance can be customized via Settings | Heading Navigator (desktop only):
37
39
 
38
40
  - **Panel width**: 240-640px (default: 320px)
39
41
  - Useful for longer heading text or smaller screens
@@ -41,3 +43,11 @@ The panel appearance can be customized via Settings | Heading Navigator:
41
43
  - Prevents the panel from obscuring too much content
42
44
 
43
45
  Settings take effect the next time the panel is opened.
46
+
47
+ ### Mobile Support
48
+
49
+ - The plugin can be accessed via the toolbar icon in the editing toolbar in the markdown editor.
50
+
51
+ - On mobile, the panel has a responsive design and appears centered with faded background.
52
+
53
+ - On mobile, the copy link icon is hidden, and instead long-press on a heading will copy link.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-heading-navigator",
3
- "version": "0.6.0",
3
+ "version": "0.6.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",
@@ -2,22 +2,24 @@
2
2
  "manifest_version": 1,
3
3
  "id": "com.bwat47.heading-navigator",
4
4
  "app_min_version": "3.3",
5
- "version": "0.6.0",
5
+ "version": "0.6.2",
6
6
  "platforms": [
7
7
  "desktop",
8
8
  "mobile"
9
9
  ],
10
10
  "name": "Heading Navigator",
11
- "description": "Overlay panel to navigate through headings in the markdown editor using the keyboard",
11
+ "description": "VS Code/Sublime text style overlay panel to navigate through headings in the markdown editor",
12
12
  "author": "bwat47",
13
13
  "homepage_url": "https://github.com/bwat47/joplin-heading-navigator",
14
14
  "repository_url": "https://github.com/bwat47/joplin-heading-navigator",
15
15
  "keywords": [
16
16
  "joplin-plugin",
17
- "Heading",
18
- "Outline",
19
- "Keyboard",
20
- "Navigation"
17
+ "heading",
18
+ "outline",
19
+ "keyboard",
20
+ "navigation",
21
+ "toc",
22
+ "table of contents"
21
23
  ],
22
24
  "categories": [
23
25
  "productivity",
@@ -56,6 +58,6 @@
56
58
  "type": "codeMirrorPlugin"
57
59
  }
58
60
  ],
59
- "_publish_hash": "sha256:e8193f1204fc1382cfbcefec7ad01fd8d679dfa16ad7f9a1aeacd1b0ac14dc87",
60
- "_publish_commit": "main:ec537ec45dccf3028a7e361faca4940cc046e819"
61
+ "_publish_hash": "sha256:4e9c5f52861e0664251b0ff3c840d627a20d2c266a9d13df3ebe5c8e98af2d3d",
62
+ "_publish_commit": "main:36e0a1cacda1370d5d18d813cdca4fcf45bec880"
61
63
  }