mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
3.2.1 (#2177)
* Add v3.2.1 release notes Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * 3.2.1 --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
c9b4042969
commit
05831e345d
5 changed files with 27 additions and 5 deletions
21
RELEASES.md
21
RELEASES.md
|
|
@ -1,5 +1,26 @@
|
|||
# Release Notes
|
||||
|
||||
# Copilot for Obsidian - Release v3.2.1
|
||||
|
||||
A patch release with search improvements and bug fixes.
|
||||
|
||||
- **Improved vault search**: Better tag matching with hierarchical support (e.g. searching `#project` also matches `#project/alpha`) and a cleaner, faster search pipeline. (@loganyang)
|
||||
- **New in-chat indexing progress**: Indexing progress now shows as a card inside Copilot Chat with a progress bar and pause/resume/stop controls, instead of a popup notice. No more phantom re-indexing on mode switch. (@loganyang)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- #2176 Fix ENAMETOOLONG error when Composer creates files with long names @logancyang
|
||||
- #2174 Fix insert/replace at cursor accidentally including agent reasoning blocks @logancyang
|
||||
- #2173 Fix phantom re-indexing on mode switch @logancyang
|
||||
- #2172 Fix search recall for tag queries and short terms @logancyang
|
||||
|
||||
## 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.0 💪💪💪
|
||||
|
||||
The first version of **Self-Host Mode** is finally here! You can simply toggle it on at the bottom of Plus settings, and **your reliance on the Copilot Plus backend is gone** (Believer required)!
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "copilot",
|
||||
"name": "Copilot",
|
||||
"version": "3.2.0",
|
||||
"version": "3.2.1",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.",
|
||||
"author": "Logan Yang",
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "obsidian-copilot",
|
||||
"version": "3.2.0",
|
||||
"version": "3.2.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "obsidian-copilot",
|
||||
"version": "3.2.0",
|
||||
"version": "3.2.1",
|
||||
"license": "AGPL-3.0",
|
||||
"dependencies": {
|
||||
"@dnd-kit/core": "^6.3.1",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-copilot",
|
||||
"version": "3.2.0",
|
||||
"version": "3.2.1",
|
||||
"description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -100,5 +100,6 @@
|
|||
"3.1.3": "0.15.0",
|
||||
"3.1.4": "0.15.0",
|
||||
"3.1.5": "0.15.0",
|
||||
"3.2.0": "0.15.0"
|
||||
"3.2.0": "0.15.0",
|
||||
"3.2.1": "0.15.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue