joplin-plugin-tag-navigator 2.11.2 → 2.12.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
@@ -104,6 +104,7 @@ After installing the plugin, check the commands listed under `Tag Navigator` in
104
104
  - [Table views](#table-views)
105
105
  - [Kanban views](#kanban-views)
106
106
  - [Filtering results](#filtering-results)
107
+ - [Result cards](#result-cards)
107
108
  - [Context expansion](#context-expansion)
108
109
  - [Colour tags](#colour-tags)
109
110
  - [Styling inline tags and checkboxes](#styling-inline-tags-and-checkboxes)
@@ -332,7 +333,7 @@ Saved queries allow you to store search configurations in notes and reuse them a
332
333
  - `"consecutive"`: Group adjacent lines
333
334
  - `"item"`: Split by item
334
335
  - `"none"`: No grouping (flat list) — each paragraph becomes its own card, enabling cross-note sorting by tag
335
- - To change the global grouping, right-click on a note title in the search panel. Saved queries can override this with their own `resultGrouping` property.
336
+ - To change the global grouping, right-click anywhere on a result card in the search panel. Saved queries can override this with their own `resultGrouping` property.
336
337
  - **`resultToggle`**: Boolean to collapse (`true`) or expand (`false`) result cards
337
338
  - **`includeCols`**: (Table view only) Comma-separated list of columns to display
338
339
  - Can include: note properties, tags, "modified", "created" timestamps
@@ -391,7 +392,7 @@ This example uses DNF mode (no `mode` field, so saved queries default to `"dnf"`
391
392
  - The new note will contain a [front matter](#front-matter-tags) template with properties for each column.
392
393
  - Tables can be customised using the following settings:
393
394
  - `Note view: Table view columns`: Set the default number of columns (most common ones) to display in the table view.
394
- - `Search: Extract the full notebook path`: Enable this to display the notebook path in the table view, and to allow [filtering results](#filtering-results) by this path.
395
+ - `Search: Extract the full notebook path`: Enable this to display the notebook path in the table view and in [result card](#result-cards) footers, and to allow [filtering results](#filtering-results) by this path.
395
396
  - `Note view: Note view: Tag case in table view`: Set to "Title Case" / "lowercase".
396
397
  - Table views, like any other type of note view, can be updated periodically using the settings: `Note view: Periodic update of tag search view in notes` and `Database / Note view: Update after sync`.
397
398
  - Tables can be customised per note using with table-specific options. See the [saved queries](#saved-queries) section for complete specifications and examples.
@@ -418,7 +419,7 @@ This example uses DNF mode (no `mode` field, so saved queries default to `"dnf"`
418
419
  ### Filtering results
419
420
 
420
421
  - Text entered in the results filter (on the panel or in a saved query) can be used to search within title of the notes, their notebook name / path, or the content of the displayed results.
421
- - Filtering behaviour depends on the result grouping mode (right-click a note title on the panel to change):
422
+ - Filtering behaviour depends on the result grouping mode (right-click anywhere on a result card to change):
422
423
  - **Group by heading** (default): Shows/hides entire sections based on whether they contain matching content.
423
424
  - **Split by item**: Shows/hides individual items, useful for filtering specific tasks like `"- [ ]"`.
424
425
  - **No grouping**: Each paragraph is a separate card, enabling sorting across notes by tag (e.g., due dates, priorities).
@@ -431,6 +432,20 @@ This example uses DNF mode (no `mode` field, so saved queries default to `"dnf"`
431
432
  - Example: `"!references/"` excludes notebooks containing "references" in their path.
432
433
  - You may also enable `Search: Use regex for tag / note / content filtering` to filter using regular expressions.
433
434
 
435
+ ### Result cards
436
+
437
+ Each result in the list view is shown as a card. By default the card is headed by the note title, which you can click to collapse the card, and whose **←** arrow opens the note at the matched line.
438
+
439
+ The setting `Search: Note title location` moves that information:
440
+
441
+ - `Heading`: the note title above the result content. This is the default.
442
+ - `Footer`: the notebook path and note title in a small grey line below the result content. Use this when the results are what you scan and the note is context rather than a header. The footer keeps the collapse click and the **←** arrow.
443
+ - `None`: no note information at all, for compact cards. These cards are always expanded, and clicking a result still opens the note at the matched line.
444
+
445
+ The footer path follows `Search: Extract the full notebook path`: turn it on for the full path (`/Projects/2026/Weekly review`), leave it off for just the notebook holding the note (`2026/Weekly review`). The footer is kept to a single row and shortens the path first, so the note title stays readable. Hover over it to see the whole path.
446
+
447
+ To change the [result grouping](#advanced-options), right-click anywhere on a result card. This works in all three modes.
448
+
434
449
  ### Context expansion
435
450
 
436
451
  Context expansion lets you reveal surrounding lines around search results to see more context without opening the note.
@@ -444,7 +459,7 @@ Context expansion lets you reveal surrounding lines around search results to see
444
459
 
445
460
  ### Inline TODOs
446
461
 
447
- - Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`). For individual task filtering, use "Split by item" grouping (right-click a note title on the panel).
462
+ - Filter results by pending tasks (`"- [ ]"`) or ones done (`"- [x]"`). For individual task filtering, use "Split by item" grouping (right-click a result card on the panel).
448
463
  - Sort results by tags to reflect their priority (see [custom sorting options](#advanced-options)).
449
464
  <details>
450
465
  <summary>Custom regex for @mentions, +projects, //due-dates</summary>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-tag-navigator",
3
- "version": "2.11.2",
3
+ "version": "2.12.0",
4
4
  "scripts": {
5
5
  "test": "jest",
6
6
  "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
@@ -26,6 +26,7 @@
26
26
  "fs-extra": "^10.1.0",
27
27
  "glob": "^8.0.3",
28
28
  "jest": "^29.7.0",
29
+ "jsdom": "^22.1.0",
29
30
  "tar": "^6.1.11",
30
31
  "ts-jest": "^29.4.9",
31
32
  "ts-loader": "^9.3.1",
@@ -6,7 +6,7 @@
6
6
  "desktop",
7
7
  "mobile"
8
8
  ],
9
- "version": "2.11.2",
9
+ "version": "2.12.0",
10
10
  "name": "Inline Tag Navigator",
11
11
  "description": "Type inline tags or frontmatter in the note editor. View your tagged paragraphs and tasks / TODOs in a search panel, or in a generated note / kanban. Build a table view / database from notes and tags. Convert between Obsidian tags and Joplin tags.",
12
12
  "author": "Alon Diament",
@@ -24,6 +24,6 @@
24
24
  ],
25
25
  "screenshots": [],
26
26
  "icons": {},
27
- "_publish_hash": "sha256:aa96e0f81845ba90132e496950bd2b674aa5cd72567c8c5aa9d693e617f562b0",
28
- "_publish_commit": "main:018404cd5cf9fbfb514089bbe593f89c56ee4b80"
27
+ "_publish_hash": "sha256:4bfe122b93bfe1449219858af86cfe70197f1215770a6cf333d0ca3affa40d9d",
28
+ "_publish_commit": "main:e9a96210b9a5c33358e244663e9ce3dde82ce778"
29
29
  }