joplin-plugin-wavedrom 1.0.0 → 1.0.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
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# Joplin Plugin
|
|
2
|
-
This plugin allows you to create
|
|
1
|
+
# Joplin Plugin WaveDrom
|
|
2
|
+
This plugin allows you to create WaveDrom diagrams as defined by https://wavedrom.com/.
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
@@ -27,3 +27,10 @@ Produces:
|
|
|
27
27
|
|
|
28
28
|

|
|
29
29
|
|
|
30
|
+
## Building
|
|
31
|
+
The plugin may be built with:
|
|
32
|
+
```
|
|
33
|
+
npm run dist
|
|
34
|
+
```
|
|
35
|
+
This will generate a jpl file in the publish directory.
|
|
36
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-wavedrom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.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",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"webpack-cli": "^4.10.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
+
"safe-eval": "^0.4.1",
|
|
31
32
|
"wavedrom": "^3.3.0"
|
|
32
33
|
}
|
|
33
34
|
}
|
|
Binary file
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "net.cwesson.joplin-plugin-wavedrom",
|
|
4
4
|
"app_min_version": "2.11",
|
|
5
|
-
"version": "1.0.
|
|
6
|
-
"name": "
|
|
7
|
-
"description": "Render
|
|
5
|
+
"version": "1.0.2",
|
|
6
|
+
"name": "WaveDrom",
|
|
7
|
+
"description": "Render WaveDrom diagrams inside your Joplin notes.",
|
|
8
8
|
"author": "Conlan Wesson",
|
|
9
9
|
"homepage_url": "https://github.com/cwesson/joplin-plugin-wavedrom",
|
|
10
10
|
"repository_url": "https://github.com/cwesson/joplin-plugin-wavedrom",
|
|
11
11
|
"keywords": [],
|
|
12
12
|
"categories": [],
|
|
13
13
|
"screenshots": [],
|
|
14
|
-
"_publish_hash": "sha256:
|
|
15
|
-
"_publish_commit": "main:
|
|
14
|
+
"_publish_hash": "sha256:0b1f467ae80a2fd0de307d9b34eaf8933cac4c6d5dc5fd6d123c60fb59533cf6",
|
|
15
|
+
"_publish_commit": "main:41feb0acc29d33243d5aaddddbe3b65334e790e3"
|
|
16
16
|
}
|