diff --git a/CHANGELOG.yaml b/CHANGELOG.yaml index 92fe9cb..b155bc1 100644 --- a/CHANGELOG.yaml +++ b/CHANGELOG.yaml @@ -1,4 +1,8 @@ releases: + - version: "0.6.14" + fixes: + - "fix search view user select text error" + - "fix model select error" - version: "0.6.13" features: - "fix settings migration" diff --git a/manifest.json b/manifest.json index 9d0ed89..5c7860a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "infio-copilot", "name": "Infio Copilot", - "version": "0.6.13", + "version": "0.6.14", "minAppVersion": "0.15.0", "description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes", "author": "Felix.D", diff --git a/package.json b/package.json index b935cb4..a223714 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-infio-copilot", - "version": "0.6.13", + "version": "0.6.14", "description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes", "main": "main.js", "scripts": { diff --git a/src/components/chat-view/SearchView.tsx b/src/components/chat-view/SearchView.tsx index 7fb3384..93fc8f4 100644 --- a/src/components/chat-view/SearchView.tsx +++ b/src/components/chat-view/SearchView.tsx @@ -95,7 +95,6 @@ const SearchView = () => { const file = app.vault.getFileByPath(result.path) if (!file) { console.error('❌ [SearchView] 在vault中找不到文件:', result.path) -().map(f => f.path)) return }