@hypothesi/tauri-plugin-mcp-bridge 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.5.0] - 2025-12-21
11
+
12
+ ### Added
13
+ - Add `resize_window` command for resizing windows to specified dimensions
14
+ - Add `get_window_info` WebSocket command for detailed window information
15
+ - Add app identifier to backend state for session verification
16
+
10
17
  ## [0.4.0] - 2025-12-05
11
18
 
12
19
  _No changes to this package._
package/README.md CHANGED
@@ -128,7 +128,7 @@ This plugin is part of the larger MCP Server for Tauri, which provides **16 tota
128
128
  Tools for UI automation and webview interaction via the plugin's WebSocket connection:
129
129
 
130
130
  1. **tauri_driver_session** - Manage automation session (start, stop, or status)
131
- 2. **tauri_list_windows** - List all webview windows with details
131
+ 2. **tauri_manage_window** - List windows, get window info, or resize windows
132
132
  3. **tauri_webview_find_element** - Find an element in the webview
133
133
  4. **tauri_read_logs** - Read logs (console, Android logcat, iOS, system)
134
134
  5. **tauri_webview_interact** - Perform gestures (click, double-click, long-press, swipe, scroll, focus)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypothesi/tauri-plugin-mcp-bridge",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "JavaScript bindings for @hypothesi/tauri-plugin-mcp-bridge - MCP Bridge plugin for Tauri",
5
5
  "type": "module",
6
6
  "main": "./dist-js/index.js",