diff --git a/README.md b/README.md index c3faf51..0eb500b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/manifest.json b/manifest.json index 2608e74..00f803a 100644 --- a/manifest.json +++ b/manifest.json @@ -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 } diff --git a/package.json b/package.json index 17d6c0f..a112317 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/versions.json b/versions.json index c0d118f..fc47c23 100644 --- a/versions.json +++ b/versions.json @@ -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" }