openrtc-tauri 0.1.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -84,6 +84,11 @@ new TauriRuntimeAdapter({
84
84
  Product apps should install the plugin instead of copying `rtc_commands.rs` from
85
85
  another application. App-specific commands can live beside it, but OpenRTC
86
86
  connection lifecycle and device discovery should remain in the plugin/runtime.
87
+ File paths, transfer queues/history, bucket sharing, drive grants, and other
88
+ product commands must remain beside the plugin in the consumer host. Route
89
+ reusable file bytes through named peer channels or the optional
90
+ `openrtc-file-transfer` package; do not add product `send_file` commands to this
91
+ plugin's permission surface.
87
92
 
88
93
  The TypeScript package is publish-ready and depends on the public `openrtc` npm
89
94
  package. The Rust plugin still depends on the OpenRTC Rust crate release path:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openrtc-tauri",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -20,11 +20,11 @@
20
20
  }
21
21
  },
22
22
  "scripts": {
23
- "build": "pnpm --dir ../openrtc run build && tsc",
23
+ "build": "rm -rf dist && pnpm --dir ../openrtc run build && tsc",
24
24
  "prepublishOnly": "pnpm run build"
25
25
  },
26
26
  "dependencies": {
27
- "openrtc": "^0.2.1"
27
+ "openrtc": "^1.0.0"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@tauri-apps/api": "^2.0.0"