joplin-plugin-context-utils 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
|
@@ -6,12 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
# Context Utils
|
|
8
8
|
|
|
9
|
-
Context Utils is a Joplin plugin that adds context menu options in the markdown editor related to links, images, task lists and code.
|
|
9
|
+
Context Utils is a Joplin plugin that adds context menu options in the markdown editor related to links, images, task lists and code. Most of the context menu options will only appear when applicable (e.g. Copy Code only appears when right clicking inside a Code Block or Inline Code).
|
|
10
10
|
|
|
11
11
|
## Context Menu Options
|
|
12
12
|
|
|
13
13
|
**Open Link/Open Resource/Send Email/Open Note** - Open external URLs in browser, open Joplin resources in default app, open mailto: links in default mail client, or open linked note.
|
|
14
14
|
|
|
15
|
+
**Add External Link** - Display option to insert a hyperlink at the cursor
|
|
16
|
+
|
|
17
|
+
**Add Link to Note** - Display option to link to another note at the cursor
|
|
18
|
+
|
|
15
19
|
**Go to footnote** - Scroll editor to defintion associated with the selected Footnote reference.
|
|
16
20
|
|
|
17
21
|
**Go to heading** - Scroll editor to specified heading when right clicking on internal anchor link (e.g. `[Test](#test)`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-context-utils",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
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",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"jest": "^30.2.0",
|
|
41
41
|
"jest-environment-jsdom": "^30.2.0",
|
|
42
42
|
"prettier": "^3.6.2",
|
|
43
|
-
"tar": "^
|
|
43
|
+
"tar": "^7.5.4",
|
|
44
44
|
"ts-jest": "^29.4.5",
|
|
45
45
|
"ts-loader": "^9.3.1",
|
|
46
46
|
"typescript": "^5.9.3",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.context-utils",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.3.0",
|
|
6
6
|
"name": "Context Utils",
|
|
7
7
|
"description": "Adds context menu options in the markdown editor related to links, images, task lists and code",
|
|
8
8
|
"author": "bwat47",
|
|
@@ -11,10 +11,12 @@
|
|
|
11
11
|
"keywords": [
|
|
12
12
|
"menus",
|
|
13
13
|
"context menu",
|
|
14
|
-
"
|
|
14
|
+
"menu",
|
|
15
|
+
"context"
|
|
15
16
|
],
|
|
16
17
|
"categories": [
|
|
17
|
-
"productivity"
|
|
18
|
+
"productivity",
|
|
19
|
+
"editor"
|
|
18
20
|
],
|
|
19
21
|
"screenshots": [
|
|
20
22
|
{
|
|
@@ -41,6 +43,6 @@
|
|
|
41
43
|
"src": "images/context-utils_promo_tile.png",
|
|
42
44
|
"label": "Context Utils Promo Tile"
|
|
43
45
|
},
|
|
44
|
-
"_publish_hash": "sha256:
|
|
45
|
-
"_publish_commit": "main:
|
|
46
|
+
"_publish_hash": "sha256:25ba52ba885565700c5ae70cf15ef54939799db644e3f0e99b3355009e55d0f9",
|
|
47
|
+
"_publish_commit": "main:839b4120bcf3d9005bb327e2151ca8961985c448"
|
|
46
48
|
}
|