joplin-plugin-heading-navigator 0.5.2 → 0.6.1
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
|
@@ -33,7 +33,7 @@ You can filter the list of headings using the search filter at the top of the pa
|
|
|
33
33
|
|
|
34
34
|
### Settings
|
|
35
35
|
|
|
36
|
-
The panel appearance can be customized via Settings | Heading Navigator:
|
|
36
|
+
The panel appearance can be customized via Settings | Heading Navigator (desktop only):
|
|
37
37
|
|
|
38
38
|
- **Panel width**: 240-640px (default: 320px)
|
|
39
39
|
- Useful for longer heading text or smaller screens
|
|
@@ -41,3 +41,11 @@ The panel appearance can be customized via Settings | Heading Navigator:
|
|
|
41
41
|
- Prevents the panel from obscuring too much content
|
|
42
42
|
|
|
43
43
|
Settings take effect the next time the panel is opened.
|
|
44
|
+
|
|
45
|
+
### Mobile Support
|
|
46
|
+
|
|
47
|
+
- The plugin can be accessed via the toolbar icon in the editing toolbar in the markdown editor.
|
|
48
|
+
|
|
49
|
+
- On mobile, the panel has a responsive design and appears centered with faded background.
|
|
50
|
+
|
|
51
|
+
- 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.
|
|
3
|
+
"version": "0.6.1",
|
|
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",
|
|
Binary file
|
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.heading-navigator",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.6.1",
|
|
6
|
+
"platforms": [
|
|
7
|
+
"desktop",
|
|
8
|
+
"mobile"
|
|
9
|
+
],
|
|
6
10
|
"name": "Heading Navigator",
|
|
7
11
|
"description": "Overlay panel to navigate through headings in the markdown editor using the keyboard",
|
|
8
12
|
"author": "bwat47",
|
|
@@ -27,6 +31,10 @@
|
|
|
27
31
|
{
|
|
28
32
|
"src": "images/screenshot2.png",
|
|
29
33
|
"label": "Heading Navigator screenshot 2"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"src": "images/screenshot3.png",
|
|
37
|
+
"label": "Heading Navigator screenshot 3"
|
|
30
38
|
}
|
|
31
39
|
],
|
|
32
40
|
"icons": {
|
|
@@ -48,6 +56,6 @@
|
|
|
48
56
|
"type": "codeMirrorPlugin"
|
|
49
57
|
}
|
|
50
58
|
],
|
|
51
|
-
"_publish_hash": "sha256:
|
|
52
|
-
"_publish_commit": "main:
|
|
59
|
+
"_publish_hash": "sha256:0646cd4fc091a6a4851e4db81b3f52767a2225e08069a2e2ffec623bb8830b2e",
|
|
60
|
+
"_publish_commit": "main:4bb99798b377249b3454315fd61a73930ed4a7ef"
|
|
53
61
|
}
|