joplin-plugin-context-utils 1.3.0 → 1.4.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
|
@@ -12,9 +12,9 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
|
|
|
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** -
|
|
15
|
+
**Add External Link** - Insert a hyperlink at the cursor
|
|
16
16
|
|
|
17
|
-
**Add Link to Note** -
|
|
17
|
+
**Add Link to Note** - Insert a link to another note at the cursor
|
|
18
18
|
|
|
19
19
|
**Go to footnote** - Scroll editor to defintion associated with the selected Footnote reference.
|
|
20
20
|
|
|
@@ -36,6 +36,10 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
|
|
|
36
36
|
|
|
37
37
|
**Open Note in New Window** - Allows you to right click a link to another joplin note and open it in a new window.
|
|
38
38
|
|
|
39
|
+
**Fetch Link Title** - Fetches the title of a URL and updates markdown link to include the title.
|
|
40
|
+
|
|
41
|
+
**Fetch All Link Titles** - Fetches the title of all URLs in the current selection and updates markdown links to include the titles.
|
|
42
|
+
|
|
39
43
|
## Settings
|
|
40
44
|
|
|
41
45
|
- Each context menu option can be enabled or disabled in the Plugin settings.
|
|
@@ -44,6 +48,6 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
|
|
|
44
48
|
|
|
45
49
|
## Misc Notes
|
|
46
50
|
|
|
47
|
-
- Some of these context menu options overlap with the ones provided by the Rich Markdown plugin
|
|
51
|
+
- Some of these context menu options overlap with the ones provided by the Rich Markdown plugin. Each option can be toggled on/off to avoid conflicts/duplicate menu items.
|
|
48
52
|
|
|
49
53
|
- Options for "Copy Image" and "Resize Image" are intentionally not provided by this plugin, as they are available in my other plugin: https://github.com/bwat47/simple-image-resize
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-context-utils",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.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",
|
|
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.4.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",
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
"src": "images/context-utils_promo_tile.png",
|
|
44
44
|
"label": "Context Utils Promo Tile"
|
|
45
45
|
},
|
|
46
|
-
"_publish_hash": "sha256:
|
|
47
|
-
"_publish_commit": "main:
|
|
46
|
+
"_publish_hash": "sha256:cb72b9b5b842c76c29a0fa39c304c7762d17c277e79abcb7b9e39fd79f738e43",
|
|
47
|
+
"_publish_commit": "main:fa8827fca0fc1001220f226ed8ae6cb63d4cf302"
|
|
48
48
|
}
|