mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
* fix: pass timeRange to Miyo search path (#2267) When Miyo is active, localSearchTool called performMiyoSearch without the timeRange parameter, causing time-based queries like "what did I do this week" to ignore date filters and return wrong results. Thread timeRange through to performMiyoSearch, FilterRetriever, and MiyoSemanticRetriever — all of which already support it. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: gitignore .claude/worktrees/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
478 B
Text
33 lines
478 B
Text
# vscode
|
|
.vscode
|
|
|
|
# Intellij
|
|
*.iml
|
|
.idea
|
|
|
|
# npm
|
|
node_modules
|
|
|
|
# Don't include the compiled main.js file in the repo.
|
|
# They should be uploaded to GitHub releases instead.
|
|
main.js
|
|
styles.css
|
|
|
|
# Exclude sourcemaps
|
|
*.map
|
|
|
|
# obsidian
|
|
data.json
|
|
|
|
# Exclude macOS Finder (System Explorer) View States
|
|
.DS_Store
|
|
|
|
# Test Environment
|
|
.env.test
|
|
|
|
# Claude configuration
|
|
.claude/settings.local.json
|
|
.claude/worktrees/
|
|
|
|
# Development session tracking
|
|
TODO.md
|