@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 +10 -0
- package/README.md +6 -2
- package/package.json +1 -1
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
|
-
|
|
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.
|
|
26
|
+
tauri-plugin-mcp-bridge = "0.2"
|
|
23
27
|
```
|
|
24
28
|
|
|
25
29
|
### Optional: TypeScript Bindings
|
package/package.json
CHANGED