Skip to content

Commit a7968ad

Browse files
committed
docs(CHANGELOG): v0.6.7
1 parent 81e0f52 commit a7968ad

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [v0.6.7](https://github.com/DearVa/Everywhere/releases/tag/v0.6.7) - 2026-03-01
2+
3+
### ✨ Features
4+
- **Visual Context Supercharged**: Introducing `get_visual_tree` tool. Your assistant can now call this tool to fetch on-screen elements freely, massively boosting its contextual comprehension and self-awareness capabilities.
5+
- **Model Update**: Removed the deprecated Gemini 3 Pro Preview model and added the newly released Gemini 3.1 Pro Preview.
6+
7+
### 🚀 Improvements
8+
- **Framework Upgrade**: Updated the underlying MCP (Model Context Protocol) framework version, which may resolve previously reported edge-case issues (#232).
9+
10+
### 🐛 Bug Fixes
11+
- **Critical Context Fix (Windows)**: Fixed a fatal typo in the visual context extraction algorithm on Windows. This bug previously caused premature truncation of complex contexts, hiding crucial information below the selected element from the assistant.
12+
- Resolved a rendering crash that could occur after enabling the text selection feature (#313).
13+
- Fixed a random crash bug related to Grid layout calculations, bringing further stability to the application.
14+
15+
**Full Changelog**: https://github.com/DearVa/Everywhere/compare/v0.6.6...v0.6.7
16+
17+
18+
119
## [v0.6.6](https://github.com/DearVa/Everywhere/releases/tag/v0.6.6) - 2026-02-22
220

321
### ✨ Features

src/Everywhere.Core/Chat/Plugins/VisualContextPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ public VisualContextPlugin(
5353
list.Add(
5454
new NativeChatFunction(
5555
ExecuteVisualActionsAsync,
56-
ChatFunctionPermissions.ScreenAccess));
56+
ChatFunctionPermissions.ScreenAccess,
57+
isExperimental: true));
5758
});
5859
}
5960

0 commit comments

Comments
 (0)