Skip to content

Commit 51cff12

Browse files
committed
chore: bump version to 0.6.0
1 parent 4279cf6 commit 51cff12

7 files changed

Lines changed: 39 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## v0.6.0
4+
5+
### Screen recording
6+
7+
New `start_recording` / `stop_recording` tools for capturing screen activity as MP4 video. Useful for recording UI flows, repro steps, and demo clips.
8+
9+
- Configurable FPS (default 5), region cropping, and max duration
10+
- Supported on macOS (CGWindowListCreateImage) and Windows (BitBlt)
11+
12+
### Windows feature parity
13+
14+
Windows now supports all tools that were previously macOS-only:
15+
16+
- **Hover tracking**`start_hover_tracking` / `get_hover_events` / `stop_hover_tracking` via UI Automation and GetCursorPos
17+
- **Screen recording**`start_recording` / `stop_recording` via BitBlt capture loop
18+
- **`element_at_point`** — added `app_name` scoping and container fallback
19+
- **`find_text`** — now searches UIA `Value` and `HelpText` properties in addition to `Name`
20+
- **`get_cursor_position`** — new Windows implementation via GetCursorPos
21+
22+
### Fixes
23+
24+
- **Drag pre-move cursor** — cursor now moves to the start position before initiating a drag, ensuring correct start coordinates (Windows)
25+
- **Hover dwell accuracy** — fixed dwell time calculation to use arrival/departure timestamps correctly, preventing inflated dwell values from pass-through elements
26+
- **Frontmost app detection** — fixed macOS frontmost app resolution to use CGWindowList stacking order instead of NSWorkspace
27+
28+
### Other
29+
30+
- Windows code refactored: deduplicated PID resolution, extracted text property helper, simplified capture_window_jpeg and UIA element search
31+
- Updated rustls-webpki to 0.103.10 (CVE fix)
32+
333
## v0.5.1
434

535
### `element_at_point` improvements

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "native-devtools-mcp"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2021"
55
license = "MIT"
66
description = "MCP server for native app testing — screenshot, OCR, click, type, find_text, template matching. macOS, Windows & Android."

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sh3ll3x3c/native-devtools-mcp-darwin-arm64",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"description": "native-devtools-mcp binary for macOS ARM64",
55
"license": "MIT",
66
"repository": {

npm/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "native-devtools-mcp",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"mcpName": "io.github.sh3ll3x3c/native-devtools",
55
"description": "MCP server for native app testing — screenshot, OCR, click, type, find_text, template matching. macOS, Windows & Android.",
66
"license": "MIT",
@@ -53,8 +53,8 @@
5353
"bin"
5454
],
5555
"optionalDependencies": {
56-
"@sh3ll3x3c/native-devtools-mcp-darwin-arm64": "0.5.1",
57-
"@sh3ll3x3c/native-devtools-mcp-win32-x64": "0.5.1"
56+
"@sh3ll3x3c/native-devtools-mcp-darwin-arm64": "0.6.0",
57+
"@sh3ll3x3c/native-devtools-mcp-win32-x64": "0.6.0"
5858
},
5959
"engines": {
6060
"node": ">=18"

npm/win32-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sh3ll3x3c/native-devtools-mcp-win32-x64",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"description": "native-devtools-mcp binary for Windows x64",
55
"license": "MIT",
66
"repository": {

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"url": "https://github.com/sh3ll3x3c/native-devtools-mcp",
88
"source": "github"
99
},
10-
"version": "0.5.1",
10+
"version": "0.6.0",
1111
"packages": [
1212
{
1313
"registryType": "npm",
1414
"identifier": "native-devtools-mcp",
15-
"version": "0.5.1",
15+
"version": "0.6.0",
1616
"transport": {
1717
"type": "stdio"
1818
}

0 commit comments

Comments
 (0)