joplin-plugin-markmap 1.4.4 → 1.5.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
|
@@ -18,7 +18,7 @@ Lastly, the plugin can be triggered by a hotkey (per default Ctrl/CMD + Shift +
|
|
|
18
18
|
- [x] Save to HTML (Online)
|
|
19
19
|
- [x] Save to note
|
|
20
20
|
- [ ] Show control indicators (zoom, move in a direction)
|
|
21
|
-
- [
|
|
21
|
+
- [x] Explain controls on the mindmap
|
|
22
22
|
- [ ] Write Tests
|
|
23
23
|
- [x] Dynamically use note title as mindmap root
|
|
24
24
|
- [x] License
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-markmap",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"scripts": {
|
|
5
|
-
"dist": "webpack --joplin-plugin-config
|
|
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",
|
|
7
|
-
"update": "npm install -g generator-joplin && yo joplin --update"
|
|
7
|
+
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
|
|
8
|
+
"updateVersion": "webpack --env joplin-plugin-config=updateVersion"
|
|
8
9
|
},
|
|
9
10
|
"license": "MIT",
|
|
10
11
|
"keywords": [
|
|
@@ -14,23 +15,25 @@
|
|
|
14
15
|
"publish"
|
|
15
16
|
],
|
|
16
17
|
"devDependencies": {
|
|
17
|
-
"@types/node": "^
|
|
18
|
+
"@types/node": "^18.7.13",
|
|
18
19
|
"chalk": "^4.1.0",
|
|
19
|
-
"copy-webpack-plugin": "^
|
|
20
|
-
"fs-extra": "^
|
|
21
|
-
"glob": "^
|
|
20
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
21
|
+
"fs-extra": "^10.1.0",
|
|
22
|
+
"glob": "^8.0.3",
|
|
22
23
|
"on-build-webpack": "^0.1.0",
|
|
23
|
-
"tar": "^6.
|
|
24
|
-
"ts-loader": "^
|
|
25
|
-
"typescript": "^
|
|
26
|
-
"webpack": "^
|
|
27
|
-
"webpack-cli": "^
|
|
28
|
-
"yargs": "^16.2.0"
|
|
24
|
+
"tar": "^6.1.11",
|
|
25
|
+
"ts-loader": "^9.3.1",
|
|
26
|
+
"typescript": "^4.8.2",
|
|
27
|
+
"webpack": "^5.74.0",
|
|
28
|
+
"webpack-cli": "^4.10.0",
|
|
29
|
+
"yargs": "^16.2.0",
|
|
30
|
+
"@joplin/lib": "~2.9"
|
|
29
31
|
},
|
|
30
32
|
"dependencies": {
|
|
31
33
|
"dompurify": "^3.0.1",
|
|
32
34
|
"file-saver-es": "^2.0.5",
|
|
33
|
-
"markmap-
|
|
35
|
+
"markmap-common": "^0.15.3",
|
|
36
|
+
"markmap-lib": "^0.15.4",
|
|
34
37
|
"uuid": "^9.0.0"
|
|
35
38
|
}
|
|
36
39
|
}
|
|
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.5.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:3f5cda4bc9badd58d7248d608306548836eb9c39ef0a5fde68fccad9ffaf5815",
|
|
14
|
+
"_publish_commit": "main:79ddfb998746d9db4e6d5bf5281890b386517d50"
|
|
15
15
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! For license information please see index.js.LICENSE.txt */
|