joplin-plugin-context-utils 1.2.1 → 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
@@ -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. 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).
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** - Insert a hyperlink at the cursor
16
+
17
+ **Add Link to Note** - Insert a 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)`)
@@ -32,6 +36,10 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
32
36
 
33
37
  **Open Note in New Window** - Allows you to right click a link to another joplin note and open it in a new window.
34
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
+
35
43
  ## Settings
36
44
 
37
45
  - Each context menu option can be enabled or disabled in the Plugin settings.
@@ -40,6 +48,6 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
40
48
 
41
49
  ## Misc Notes
42
50
 
43
- - Some of these context menu options overlap with the ones provided by the Rich Markdown plugin (this plugin provides similar options but as a standalone plugin). Each option can be toggled on/off to avoid conflicts/duplicate menu items.
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.
44
52
 
45
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.2.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",
@@ -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": "^6.1.11",
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",
@@ -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.2.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",
@@ -11,10 +11,12 @@
11
11
  "keywords": [
12
12
  "menus",
13
13
  "context menu",
14
- "context utils"
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:07d17c1af4e76c758638aa88f026b5f6c54d386f7a332837ef7d0df341e81c29",
45
- "_publish_commit": "main:5da075381a727a3b2897fc698038c5ed026595ec"
46
+ "_publish_hash": "sha256:cb72b9b5b842c76c29a0fa39c304c7762d17c277e79abcb7b9e39fd79f738e43",
47
+ "_publish_commit": "main:fa8827fca0fc1001220f226ed8ae6cb63d4cf302"
46
48
  }