joplin-plugin-markmap 1.2.0 → 1.3.0
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,17 +8,18 @@ This plugin allows the usage of markmap to visualize the current note in form of
|
|
|
8
8
|
To access the mindmap open the note and click on the diagram icon seen in the taskbar.
|
|
9
9
|
Zooming as well as paning can be done with the mouse.
|
|
10
10
|
Each node is collapseable by clicking on it.
|
|
11
|
-
Currently it is
|
|
11
|
+
Currently it is possible to export the mindmap to a html file as well as to a SVG file.
|
|
12
|
+
Lastly, the plugin can be triggered by a hotkey (per default Ctrl/CMD + Shift + M).
|
|
12
13
|
|
|
13
14
|
## TODO
|
|
14
15
|
- [ ] Save to various formats (SVG, PNG, to note itself)
|
|
15
16
|
- [x] Save to SVG
|
|
16
|
-
- [
|
|
17
|
+
- [x] Save to PNG
|
|
17
18
|
- [x] Save to HTML (Online)
|
|
18
19
|
- [ ] Save to note
|
|
19
20
|
- [ ] Show control indicators (zoom, move in a direction)
|
|
20
21
|
- [ ] Explain controls on the mindmap
|
|
21
|
-
- [ ]
|
|
22
|
+
- [ ] Write Tests
|
|
22
23
|
- [x] Dynamically use note title as mindmap root
|
|
23
24
|
- [x] License
|
|
24
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-markmap",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "de.fomin.markmap",
|
|
4
4
|
"app_min_version": "2.8",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.3.0",
|
|
6
6
|
"name": "Markmap",
|
|
7
7
|
"description": "Generate a mindmap using markmap",
|
|
8
8
|
"author": "Daniel Fomin",
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
"repository_url": "https://git.fomin.site/daniel/joplin-markmap",
|
|
11
11
|
"keywords": [],
|
|
12
12
|
"categories": [],
|
|
13
|
-
"_publish_hash": "sha256:
|
|
14
|
-
"_publish_commit": "main:
|
|
13
|
+
"_publish_hash": "sha256:2b9758f17816786daace2b79be53d876cf91e93431f5d854d799854ca29128e8",
|
|
14
|
+
"_publish_commit": "main:ad531c23a3aa3e1d9a0472f6c2c29648f7690cda"
|
|
15
15
|
}
|