joplin-plugin-context-utils 1.1.3 → 1.1.5
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
|
@@ -26,9 +26,9 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
|
|
|
26
26
|
|
|
27
27
|
**Check/Uncheck All Tasks** - Toggle all tasks in selection.
|
|
28
28
|
|
|
29
|
-
**
|
|
29
|
+
**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)
|
|
30
30
|
|
|
31
|
-
**Open in New Window** - Allows you to right click a link to another joplin note and open it in a new window.
|
|
31
|
+
**Open Note in New Window** - Allows you to right click a link to another joplin note and open it in a new window.
|
|
32
32
|
|
|
33
33
|
## Settings
|
|
34
34
|
|
|
@@ -38,6 +38,6 @@ Context Utils is a Joplin plugin that adds context menu options in the markdown
|
|
|
38
38
|
|
|
39
39
|
## Misc Notes
|
|
40
40
|
|
|
41
|
-
-
|
|
41
|
+
- 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.
|
|
42
42
|
|
|
43
43
|
- 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.1.
|
|
3
|
+
"version": "1.1.5",
|
|
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",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"@codemirror/lang-markdown": "^6.5.0",
|
|
24
24
|
"@codemirror/language": "^6.11.3",
|
|
25
25
|
"@codemirror/state": "^6.5.2",
|
|
26
|
+
"@codemirror/search": "^6.5.11",
|
|
26
27
|
"@eslint/eslintrc": "^3.3.1",
|
|
27
28
|
"@eslint/js": "^9.39.1",
|
|
28
29
|
"@types/jest": "^30.0.0",
|
|
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.1.
|
|
5
|
+
"version": "1.1.5",
|
|
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",
|
|
@@ -41,6 +41,6 @@
|
|
|
41
41
|
"src": "images/context-utils_promo_tile.png",
|
|
42
42
|
"label": "Context Utils Promo Tile"
|
|
43
43
|
},
|
|
44
|
-
"_publish_hash": "sha256:
|
|
45
|
-
"_publish_commit": "main:
|
|
44
|
+
"_publish_hash": "sha256:e70cc55b2719c0783ccb357bd1e3ac18d5e2acad31d3601b1e060908b886c402",
|
|
45
|
+
"_publish_commit": "main:8fa48de8a3d643bedbb0d1edf24b25bc64fe0758"
|
|
46
46
|
}
|