Update CHANGELOG for version 0.0.4 with new features and improvements

- Added per-tool hard timeouts and abort-signal support for long-running tools to enhance responsiveness.
- Introduced configurable timeout settings in the agent's configuration.
- Implemented GPU-accelerated local embeddings with fallback options, along with detailed indexing page information.
- Expanded ignored directories for tools and indexing to improve performance and efficiency.
This commit is contained in:
Pawan Osman
2026-07-15 15:41:03 +03:00
parent d47e978be7
commit 76993e645b
2 changed files with 17 additions and 1 deletions
+16
View File
@@ -4,6 +4,22 @@ All notable changes to the "ocursor" extension will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## [0.0.4] - 2026-07-15
### Added
- Per-tool hard timeouts so hung Grep/Glob/Shell/etc. cannot block the agent loop forever
- Abort-signal support for long-running tools (walk, grep, shell) so Stop cancels mid-work
- Configurable per-tool timeout seconds in Settings → Agents
- GPU-accelerated local embeddings when available (DirectML / CUDA / CoreML / WebGPU), with CPU fallback
- Indexing page shows GPU/CPU badge plus model and runtime technical details (repo, dtype, ONNX EP, platform)
- Stricter indexable-file filters (source extensions only; skip lockfiles, minified bundles, binaries)
### Changed
- Expanded ignored directories for tools and indexing (`node_modules`, build caches, venvs, vendor, etc.)
- Semantic index walk and file watcher skip non-source trees earlier for faster indexing
## [0.0.3] - 2026-07-15
### Added
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "ocursor",
"displayName": "OpenCursor Agent",
"description": "AI coding agent chat inside VS Code",
"version": "0.0.3",
"version": "0.0.4",
"publisher": "pkrd",
"license": "MIT",
"icon": "media/icon.png",