chore: prepara 0.6.0 pra submissao em community plugins

- bump minAppVersion 1.0.0 -> 1.5.0
- isDesktopOnly false -> true (alinhamento com README; plugin
  depende de DOM interno do graph view nao disponivel no mobile)
- description em sentence case, foco no que faz, 250 chars
- README: troca "Mobile not officially supported" por
  "Desktop only" pra refletir isDesktopOnly
This commit is contained in:
Thalik Bussacro 2026-04-29 00:39:09 -03:00
parent d1435a3fc8
commit ba1d3ac905
4 changed files with 8 additions and 7 deletions

View file

@ -26,9 +26,9 @@ The reload icon in the panel header clears all lines.
## Limitations
- **Desktop only** — the plugin queries internal DOM of the graph view that isn't available on mobile.
- **Global graph only** — local graphs are not targeted.
- **No reverse parsing** — opening the panel doesn't reconstruct lines from a filter that was typed manually into the native input. The panel always starts from a clean state.
- **Mobile not officially supported** — the plugin relies on internal DOM structure of the graph view that may differ on mobile.
- **Internal API usage** — the plugin queries internal DOM (`.graph-controls`, `.suggestion-container`) that aren't part of Obsidian's public API. A future Obsidian update could break it. Issues welcome.
## Installation

View file

@ -1,9 +1,9 @@
{
"id": "graph-filter-builder",
"name": "Graph Filter Builder",
"version": "0.5.3",
"minAppVersion": "1.0.0",
"description": "Adds a Filter Builder panel to the graph view — structured Include/Exclude lines for tag/path/file with autocomplete. Lives at the top-left of the graph and live-updates the native filter input.",
"version": "0.6.0",
"minAppVersion": "1.5.0",
"description": "Build graph view filters as structured include/exclude lines with autocomplete for tags, paths, and files.",
"author": "Thalik",
"isDesktopOnly": false
"isDesktopOnly": true
}

View file

@ -1,6 +1,6 @@
{
"name": "graph-filter-builder",
"version": "0.5.3",
"version": "0.6.0",
"description": "Structured Include/Exclude filter builder for the graph view, with autocomplete for tags, paths and files.",
"main": "main.js",
"type": "module",

View file

@ -2,5 +2,6 @@
"0.5.0": "1.0.0",
"0.5.1": "1.0.0",
"0.5.2": "1.0.0",
"0.5.3": "1.0.0"
"0.5.3": "1.0.0",
"0.6.0": "1.5.0"
}