joplin-plugin-tag-navigator 0.7.4 → 0.8.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
@@ -45,12 +45,17 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
45
45
  - For example, every word in the text may be defined as a tag using a custom regex such as `[A-Za-z0-9]+[\w]*`.
46
46
  - Inline TODOs:
47
47
  - Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`).
48
- - 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)`.
48
+ - 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)`.
49
+ - Supported additional checkbox styles
50
+
51
+ ![custom checkboxes](img/checkboxes.png)
52
+
53
+ - You may increase the checkbox size on smaller screens by setting `Search: Panel style` with the CSS `.itags-search-checkbox { width: 18px; height: 18px; font-size: 18px }` (adjust as needed).
49
54
  - Tag / note filter keyboard shortcuts:
50
55
 
51
56
  | Key | Action |
52
57
  | --- | ------ |
53
- | Enter | Add tag / note to query |
58
+ | Enter | Add tag(s) / note to query |
54
59
  | 2nd Enter | Search notes based on current query |
55
60
  | Delete | Remove last added tag / note from query |
56
61
  | Esc | Clear the filter (display all tags / notes) |
@@ -63,7 +68,7 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
63
68
  - You can highlight tags in the Markdown editor using [Rich Markdown](https://github.com/CalebJohn/joplin-rich-markdown) (version ≥ 0.14).
64
69
  - In `Joplin settings --> Rich Markdown --> Advanced Settings --> Custom classes JSON` enter:
65
70
  ```
66
- [{"name": "rm-tag", "regex": "(?<=^|\\s)#([^\\s#]*\\w)"}]
71
+ [{"name": "rm-tag", "regex": "(?<=^|\\s)#([^\\s#'\"]*\\w)"}]
67
72
  ```
68
73
  - In `Joplin settings --> Appearance --> Custom stylesheet for Joplin-wide app styles` add the following to the style sheet:
69
74
  ```
@@ -75,7 +80,7 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
75
80
  display: inline;
76
81
  }
77
82
  ```
78
- - On the mobile app, since it is impossible to edit the stylesheet, one could instead define the name of the tag class to be `"name": "searchMatch"`. This will use the same highlighting style as Joplin search results.
83
+ - On the mobile app, since it is impossible to edit the stylesheet, one could install this [Rich Markdown fork](https://github.com/alondmnt/joplin-rich-markdown/releases/tag/v0.15-mobile-style-v1) (with predefined support for tags and checkboxes) or instead define the name of the tag class to be `"name": "searchMatch"`. This will use the same highlighting style as Joplin search results.
79
84
 
80
85
  ## Motivation
81
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-tag-navigator",
3
- "version": "0.7.4",
3
+ "version": "0.8.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",
@@ -29,6 +29,7 @@
29
29
  "webpack-cli": "^4.10.0"
30
30
  },
31
31
  "dependencies": {
32
+ "date-fns": "^3.6.0",
32
33
  "lodash.debounce": "^4.0.8",
33
34
  "markdown-it": "^14.0.0",
34
35
  "markdown-it-task-lists": "^2.1.1"
@@ -6,7 +6,7 @@
6
6
  "desktop",
7
7
  "mobile"
8
8
  ],
9
- "version": "0.7.4",
9
+ "version": "0.8.0",
10
10
  "name": "Inline Tag Navigator",
11
11
  "description": "Type inline #tags in the note editor. View your tagged paragraphs and list items in an advanced search panel, or in a generated note. Convert inline and Obsidian tags into Joplin tags, and vice versa.",
12
12
  "author": "Alon Diament",
@@ -24,6 +24,6 @@
24
24
  ],
25
25
  "screenshots": [],
26
26
  "icons": {},
27
- "_publish_hash": "sha256:eb316a04434cce687946f02354dc55bac7d7245c00a34a728c4010d795a6e43b",
28
- "_publish_commit": "main:5a2e7fa02fc811c55849a0939779133f91f44b85"
27
+ "_publish_hash": "sha256:e9773df94b6e090a5b594cff352ac7b8eb2475a6673142bbdc21f9881e8d53df",
28
+ "_publish_commit": "main:c7aa52a05cf826679d5b1f84fc5579e155f7e59f"
29
29
  }