@hypothesi/tauri-plugin-mcp-bridge 0.2.1 → 0.2.2

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,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.2] - 2025-12-01
11
+
12
+ ### Fixed
13
+ - Fix screenshot crash on iOS by properly handling NSRunLoop and avoiding unsafe pointer casts
14
+
15
+ ## [0.2.1] - 2025-11-30
16
+
17
+ ### Fixed
18
+ - Make Tauri APIs a peerDependency instead of a direct dependency
19
+
10
20
  ## [0.2.0] - 2025-11-29
11
21
 
12
22
  ### Added
package/README.md CHANGED
@@ -15,11 +15,15 @@ The MCP Bridge plugin extends MCP servers with direct access to Tauri internals.
15
15
 
16
16
  ## Installation
17
17
 
18
- Add the Rust crate to your `src-tauri/Cargo.toml`:
18
+ ```bash
19
+ cargo add tauri-plugin-mcp-bridge
20
+ ```
21
+
22
+ Or add manually to your `src-tauri/Cargo.toml`:
19
23
 
20
24
  ```toml
21
25
  [dependencies]
22
- tauri-plugin-mcp-bridge = "0.1"
26
+ tauri-plugin-mcp-bridge = "0.2"
23
27
  ```
24
28
 
25
29
  ### Optional: TypeScript Bindings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypothesi/tauri-plugin-mcp-bridge",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
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",