You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: Add a new interactive Semantic Galaxy View for visualising vault relationships and integrating Visual RAG.
* feat: Implement graph view auto-refresh on index updates, gracefully handle aborted graph layouts, and refine UI theming and camera centering.
* refactor: reorder object properties for consistency in styling and camera state updates.
* Refactor: enhance graph view stability by removing the visibility observer, adding width checks before refreshing, and improving theme colour resolution.
* feat: refactor graph view to initialise Sigma.js robustly within a dedicated wrapper element and add `edgeType` to graph edges.
* fix: Harden Semantic Galaxy rendering by addressing WebGL 0x0 death in hidden tabs, physics implosions, camera animation crashes, and improving theme color resilience.
* fix: Re-enable Sigma graph interaction events, including hover previews with Sigma v3 payload extraction, and reset view path on open.
* feat: improve graph label styling, add enhanced node hover effects, and implement smart camera behaviour for graph navigation.
* feat: Implement topic-based node colouring, add graph view context menu controls, and enhance subgraph generation with relational clustering.
* feat: implement custom node hover rendering with new interfaces and theme colours
* feat: enhance graph layout with edge weighting and scaling, broaden topic extraction, and improve label visibility by lowering the rendering threshold.
* refactor: simplify semantic graph camera logic to always fit view upon new cluster revelation.
* feat: implement interactive node and edge hovering in the semantic graph view, displaying semantic scores on hovered edges, and store semantic edge scores in the indexer.
* feat: enhance graph label visibility and theme integration, and implement a BM25 keyword search fallback for semantic injection.
* feat: Augment edge label size in the graph view and implement physics weights for structural and semantic edges.
* feat: Add an interactive attraction slider to the graph view for dynamic control over node clustering.
* feat: add graph reshuffle button and attraction slider label, improve physics stability with dynamic repulsion, and refine semantic edge styling.
* refactor: trigger semantic graph updates on slider input events instead of change events.
* feat: add configurable structural and semantic edge thickness and refactor graph view debouncing
* fix: Model selection dropdown in ResearchChatView now dynamically updates when new models are fetched.
* fix: Researcher UI model selection dropdown now dynamically updates to display newly available models.
-**Researcher UI**: Fixed a bug where the model selection dropdown would fail to display newly available models (like Gemini 3.1 Pro) after a fresh API fetch. The dropdown now dynamically updates across all views in real-time.
21
+
12
22
### Breaking changes
13
23
14
24
-**Minimum Obsidian Version**: The minimum required version of Obsidian has been bumped to **v1.11.4** to support the native `SecretStorage` API. Users on older versions will not be able to install or update to this version.
15
25
-**API Key Synchronization**: To improve security, your Google Gemini API key is now stored in your device's secure OS keychain (e.g., macOS Keychain, Windows Credential Manager) rather than in plain text. Because of this, **API keys will no longer sync across devices via Obsidian Sync or iCloud**. You will need to manually enter your API key once on each device you use.
16
26
17
27
### User features
18
28
29
+
-**Semantic Galaxy View**: Replaced the static relationship list with a high-performance, interactive 3D-like graph view. The "Semantic Galaxy" visualises your vault's relationships in real-time, centering on your active note.
30
+
-**Visual RAG**: The graph now reacts to the Researcher agent. When the AI mentions files in its response, those notes are automatically highlighted in the galaxy, providing instant spatial context for the agent's reasoning.
31
+
-**Structural & Semantic Discovery**: The view blends structural Wikilinks (BFS) with semantic vector similarities, allowing you to discover both explicit and hidden connections in your knowledge base.
-**Interactive Layout Controls**: Added a real-time "Attraction" slider to the graph view. Note clustering is driven by mathematical semantic scores; highly-related concepts will physically pull together, and the slider lets you tune this gravity. Includes a "Reshuffle" button to instantly regenerate the layout from scratch if it gets tangled.
34
+
-**Adaptive Rendering**: Edge labels dynamically scale and shift coloring to support high contrast modes like Obsidian Dark Mode natively.
35
+
-**Physics Stability**: Resolved an issue where high attraction could collapse the graph into a 1D line by dynamically scaling repulsive forces to maintain 2D dispersion.
19
36
-**Improved Security**: Upgraded the plugin to use Obsidian's native Secure Storage. Your API keys are now encrypted and stored safely in your operating system's keychain rather than sitting in plain text in your vault folder.
20
37
-**Linux Compatibility**: Added an intelligent fallback mechanism for Linux users. If your system (e.g., Flatpak or minimal distros) does not have a reachable keychain, the plugin will gracefully fall back to the legacy plain-text storage rather than crashing or nagging you.
21
38
22
39
### Developer features
23
40
41
+
-**High-performance WebGL Graphing**: Integrated Sigma.js and Graphology into the Obsidian UI. Implemented a Singleton-like Sigma managed instance with `IntersectionObserver` to ensure zero CPU/GPU overhead when the view is not visible.
42
+
-**Yielding Worker Layout**: Refactored the ForceAtlas2 layout engine to run in the background worker with a yielding strategy (via `setTimeout(0)`), ensuring the main thread stays 100% responsive during complex graph calculations.
43
+
-**BFS Subgraph Extraction**: Implemented a "Quota-limited BFS" algorithm in the indexer worker to extract local subgraphs (max 250 nodes) centered on active files, ensuring consistent performance regardless of vault size.
44
+
-**Semantic Injection**: Added logic to inject top-K semantic neighbors into the structural graph, bridging the gap between vector search and graph theory.
45
+
-**Smart Layout Seeding**: Implemented positional seeding to prevent graph "jumping" during updates by reusing previous node coordinates where available.
46
+
-**Internal Event Bus**: Leveraged `GraphService` as a centralized, type-safe internal event bus for Visual RAG orchestration, eliminating `any` casts and collisions on `app.workspace`.
24
47
-**Secure API key storage**: Migrated Google Gemini API keys from plain text `data.json` to Obsidian's native `SecretStorage` API (v1.11.4+).
25
48
-**JIT initialization**: Refactored `GeminiService` to use asynchronous just-in-time client instantiation, preventing "Async Constructor" race conditions during plugin load.
26
49
-**Stable secret IDs**: Mandated a persistent secret ID (`vault-intelligence-api-key`) to prevent sync-induced "ping-pong" conflicts between multiple devices.
Copy file name to clipboardExpand all lines: docs/reference/configuration.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,9 @@ Configure how connections and similar notes are discovered.
39
39
| Embedding provider |`gemini`| Google Gemini: Cloud-based. Requires API key. <br>Local: Offline. Runs on your CPU. |
40
40
| Embedding model |`gemini-embedding-001`| The vector engine. Choose from Gemini presets or various local ONNX models. |
41
41
| Minimum similarity score |`0.5`| Relevance threshold (0.0 to 1.0). Matches below this are ignored. |
42
+
| Semantic graph node limit |`250`| Maximum number of nodes to render in the Semantic Galaxy view. Controls the scale of the visualised universe. **How to set:** Keep at `250` for standard performance. Increase to `500+` on powerful desktops for massive overviews, or lower to `100` if the physics simulation stutters on older devices. |
43
+
| Structural edge thickness |`1.0`| Visual weight of explicit wikilinks. Controls how thick the lines representing your actual markdown links are. **How to set:** The default `1.0` balances visibility. Increase to `2.0+` if you want your manual structure to clearly dominate the graph, or reduce to `0.5` to blend them evenly with AI suggestions. |
44
+
| Semantic edge thickness |`0.5`| Visual weight of implied AI relationships. Controls how thick the lines representing vector similarity are. **How to set:** The default `0.5` keeps AI suggestions as a subtle background web. Increase to `1.0+` if you are actively using the galaxy to discover new connections and want them visually prioritised. |
42
45
| Similar notes limit |`20`| Max number of related notes displayed in the sidebar. |
0 commit comments