joplin-plugin-context-utils 1.1.2 → 1.1.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
|
@@ -26,6 +26,10 @@ 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
|
+
**Pin to Tabs** - 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
|
+
|
|
31
|
+
**Open in New Window** - Allows you to right click a link to another joplin note and open it in a new window.
|
|
32
|
+
|
|
29
33
|
## Settings
|
|
30
34
|
|
|
31
35
|
- Each context menu option can be enabled or disabled in the Plugin settings.
|
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.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",
|
|
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.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",
|
|
@@ -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:2106745bf5eb6c7596825a8b0956f49903970f92b88f2b651aa5cfc2e2315a2a",
|
|
45
|
+
"_publish_commit": "main:dddb416c849555babae35fa436dc4aa7e1f7dd6a"
|
|
46
46
|
}
|