joplin-plugin-tag-navigator 0.3.0 → 0.4.1

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
@@ -5,6 +5,8 @@ This plugin adds inline tag support (such as #inline-tag) to [Joplin](https://jo
5
5
  - It adds a panel for searching tagged paragraphs across your notes ([video](https://www.youtube.com/watch?v=im0zjQFoXb0)).
6
6
  - Save favourite search queries in notes and sync them across devices ([video](https://www.youtube.com/watch?v=xIBZl2Ala9A)).
7
7
  - Tag-by-notes: You may also search for links or [[wikilinks]] to notes.
8
+ - Add, replace and remove inline tags via the panel context menu (right-click on a tag).
9
+ - Toggle checkboxes / TODOs from the panel.
8
10
  - It adds a panel for navigating between inline tags that appear in the current note.
9
11
  - It can convert your existing inline tags to native Joplin tags, so that they are accessible using Joplin's built-in tag search.
10
12
 
@@ -22,11 +24,12 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
22
24
 
23
25
  ## Tips
24
26
 
27
+ - If any of the actions on note results does not work (toggling checkboxses, editing tags), this is usually resolved by a database update (Ctrl+Shift+D).
25
28
  - The definition of a "tag" can be adjusted with user-defined regular expressions.
26
29
  - For example, every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`.
27
- - Tag search can be used to search, filter and toggle checkboxes (inline TODOs) directly from the panel.
30
+ - Inline TODOs:
28
31
  - Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`).
29
- - To support [additional tags](https://github.com/CalebJohn/joplin-inline-todo?tab=readme-ov-file#confluence-style) for @mentions, +projects and //due-dates one can use a custom regex such as `(?<=^|\s)([#@+]|\/\/)([^\s#@+]*\w)`.
32
+ - Add support for [additional tags](https://github.com/CalebJohn/joplin-inline-todo?tab=readme-ov-file#confluence-style) for @mentions, +projects and //due-dates using a custom tag regex such as `(?<=^|\s)([#@+]|\/\/)([^\s#@+]*\w)`.
30
33
  - Tag / note filter keyboard shortcuts:
31
34
 
32
35
  | Key | Action |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-tag-navigator",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
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",
@@ -15,6 +15,7 @@
15
15
  "publish"
16
16
  ],
17
17
  "devDependencies": {
18
+ "@codemirror/view": "^6.26.0",
18
19
  "@joplin/lib": "~2.9",
19
20
  "@types/node": "^18.7.13",
20
21
  "chalk": "^4.1.0",
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 1,
3
3
  "id": "joplin.plugin.alondmnt.tag-navigator",
4
4
  "app_min_version": "2.10",
5
- "version": "0.3.0",
5
+ "version": "0.4.1",
6
6
  "name": "Inline Tag Navigator",
7
7
  "description": "A system to organize, search, browse and convert inline tags and note mentions via dedicated panels.",
8
8
  "author": "Alon Diament",
@@ -13,10 +13,13 @@
13
13
  "tags"
14
14
  ],
15
15
  "categories": [
16
- "tags"
16
+ "tags",
17
+ "personal knowledge management",
18
+ "productivity",
19
+ "search"
17
20
  ],
18
21
  "screenshots": [],
19
22
  "icons": {},
20
- "_publish_hash": "sha256:18fc98a4a69f67d23b6c23eab24f99cc672dd2b08d58cbd025e2cc0de65b7bb1",
21
- "_publish_commit": "main:20b164c321f9fbc4586a68f86a798b0a79c2d5d6"
23
+ "_publish_hash": "sha256:fe85bfc7ba6e8665936b92a74dcef9b6ead1d10fc4c5f34a8348f0ac777eb9e2",
24
+ "_publish_commit": "main:19dd9458bd47720c4fc7b206a42872e9e96ce11f"
22
25
  }