From 708470506709c91f39a9d1bf9efbc7c5d9a880a9 Mon Sep 17 00:00:00 2001 From: Wenzheng Jiang Date: Mon, 30 Mar 2026 09:25:46 +0900 Subject: [PATCH] release: v3.2.6 (#2335) Co-authored-by: Claude Sonnet 4.6 --- RELEASES.md | 29 +++++++++++++++++++++++++++++ manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- versions.json | 3 ++- 5 files changed, 35 insertions(+), 5 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 0a562fbd..9a840c0f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,34 @@ # Release Notes +# Copilot for Obsidian - Release v3.2.6 🛠️ + +A solid patch release focused on **Miyo remote server improvements** and a handy **OpenRouter prompt caching toggle**! + +- 🧠 **Miyo remote server support, polished** — Several improvements land together for users running Miyo on a remote machine. You can now set a **Remote Vault Folder** path so Copilot sends the correct path to your remote server (instead of your local path). The settings UI is cleaner too: "Vault Name" is now "Remote Vault Path (Optional)" and "Custom Miyo Server URL" is now "Remote Miyo Server URL (Optional)", both defaulting to blank so local users see no change. An indicator under the Enable Miyo toggle shows you the effective vault path and whether it resolves as local or remote. (@wenzhengjiang) +- 📱 **Miyo stays off on mobile without a remote server** — On mobile, where local service discovery is unavailable, Miyo now quietly disables itself unless you've configured a Remote Miyo Server URL. No more silent failures! (@wenzhengjiang) +- 🔁 **Miyo folder API refactor** — Under the hood, Miyo integration now uses the new folder-based API, using your vault path as the folder root and translating paths back to vault-relative paths. Index refreshes now notify you that the folder index is refreshing in Miyo. (@wenzhengjiang) +- ⚙️ **OpenRouter: per-model prompt caching toggle** — If you use an OpenRouter endpoint that doesn't support `cache_control` headers (like Zero Data Retention endpoints), you can now turn off prompt caching per model in the model edit dialog. Prompt caching stays on by default for everyone else. (@logancyang) + +More details in the changelog: + +### Improvements + +- #2334 feat(miyo): add remote vault folder path override for remote servers @wenzhengjiang +- #2326 feat(miyo): rename vault name to remote vault path and align with server API @wenzhengjiang +- #2318 feat(openrouter): add per-model toggle for prompt caching @logancyang + +### Bug Fixes + +- #2331 Refactor Miyo integration for folder API @wenzhengjiang +- #2328 feat(miyo): disable miyo on mobile without a remote server URL @wenzhengjiang + +## Troubleshoot + +- If models are missing, navigate to Copilot settings -> Models tab and click "Refresh Built-in Models". +- Please report any issue you see in the member channel! + +--- + # Copilot for Obsidian - Release v3.2.5 🛠️ A packed patch release with **Composer V2 editing**, **Azure provider unification**, **drag-to-insert wikilinks**, **Obsidian Bases support**, **LM Studio Responses API**, and a wave of agent, search, and UI improvements! diff --git a/manifest.json b/manifest.json index e778ea74..55c817c7 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "copilot", "name": "Copilot", - "version": "3.2.5", + "version": "3.2.6", "minAppVersion": "0.15.0", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "author": "Logan Yang", diff --git a/package-lock.json b/package-lock.json index fc0f080f..2ea5db6d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-copilot", - "version": "3.2.5", + "version": "3.2.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-copilot", - "version": "3.2.5", + "version": "3.2.6", "license": "AGPL-3.0", "dependencies": { "@dnd-kit/core": "^6.3.1", diff --git a/package.json b/package.json index 078cee6a..63d0da26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-copilot", - "version": "3.2.5", + "version": "3.2.6", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index e128038d..9319e5e4 100644 --- a/versions.json +++ b/versions.json @@ -105,5 +105,6 @@ "3.2.2": "0.15.0", "3.2.3": "0.15.0", "3.2.4": "0.15.0", - "3.2.5": "0.15.0" + "3.2.5": "0.15.0", + "3.2.6": "0.15.0" }