joplin-plugin-context-utils 1.4.1 → 1.4.3

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
@@ -28,17 +28,21 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
28
28
 
29
29
  **Copy OCR Text** - Copy OCR text from image resources when available.
30
30
 
31
- **Check/Uncheck Task** - Toggle task on selected line.
32
-
33
- **Check/Uncheck All Tasks** - Toggle all tasks in selection.
31
+ **Check/Uncheck Task** / **Check/Uncheck All Tasks** - Toggle task on selected line or Toggle all tasks in selection.
34
32
 
35
33
  **Open Note as Pinned Tab** - Allows you to right click a link to another joplin note and pin it to a tab (requires the [Note Tabs](https://joplinapp.org/plugins/plugin/joplin.plugin.note.tabs/?from-tab=all) plugin)
36
34
 
37
35
  **Open Note in New Window** - Allows you to right click a link to another joplin note and open it in a new window.
38
36
 
39
- **Fetch Link Title** - Fetches the title of a URL and updates markdown link to include the title.
37
+ **Open All Links** - Opens all detected HTTP(S) links in the current text selection, in selection order.
38
+
39
+ **Fetch Link Title** / **Fetch All Link Titles** - Fetches the title of a URL and updates markdown link to include the title (or converts to a markdown link if its a bare URL).
40
+
41
+ - Note that this results in an outbound request to fetch the web page title.
42
+ - There's special handling for JIRA links to set the link text to the JIRA issue number (since JIRA issues just set the page title to "Jira"). There's currently no special handling for any other link types.
40
43
 
41
- **Fetch All Link Titles** - Fetches the title of all URLs in the current selection and updates markdown links to include the titles.
44
+ > [!note]
45
+ > Open All Links and Fetch Link Title/Fetch All Link Titles do not support reference-style links
42
46
 
43
47
  ## Settings
44
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-context-utils",
3
- "version": "1.4.1",
3
+ "version": "1.4.3",
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",
@@ -29,6 +29,7 @@
29
29
  "@types/node": "^24.10.0",
30
30
  "@typescript-eslint/eslint-plugin": "^8.46.3",
31
31
  "@typescript-eslint/parser": "^8.46.3",
32
+ "baseline-browser-mapping": "^2.9.19",
32
33
  "chalk": "^4.1.0",
33
34
  "copy-webpack-plugin": "^13.0.1",
34
35
  "eslint": "^9.39.1",
@@ -40,7 +41,7 @@
40
41
  "jest": "^30.2.0",
41
42
  "jest-environment-jsdom": "^30.2.0",
42
43
  "prettier": "^3.6.2",
43
- "tar": "^7.5.4",
44
+ "tar": "^7.5.7",
44
45
  "ts-jest": "^29.4.5",
45
46
  "ts-loader": "^9.3.1",
46
47
  "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.4.1",
5
+ "version": "1.4.3",
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:c25911d870ff23ab1e0bd03a070c9e1308504df52b258b4a47ff6e3d62f89197",
47
- "_publish_commit": "main:78ebeb14b2316f75b3d3a3a7f885cade72f4e080"
46
+ "_publish_hash": "sha256:5a88e90d92e28dfef4a8bcef3b3410910216f382078a96f83801fc7c79ac7238",
47
+ "_publish_commit": "main:6c772f38b4ab0888b3606803d1841a788fbadf4a"
48
48
  }