tauri-remote-ui 0.25.0 → 0.26.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 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,7 +16,11 @@
16
16
  ### Javascript
17
17
  - **api/core** - `invoke`
18
18
  - **api/event** - `listen`
19
- - **api/app** - `defaultWindowIcon`,`fetchDataStoreIdentifiers`,`getBundleType`,`getIdentifier`,`getName`,`getTauriVersion`,`getVersion`,`hide`,`removeDataStore`,`setDockVisibility`,`setTheme`,`show`
19
+ - **api/app**
20
+ - `defaultWindowIcon`,`fetchDataStoreIdentifiers`,`getBundleType`,
21
+ - `getIdentifier`,`getName`,`getTauriVersion`,
22
+ - `getVersion`,`hide`,`removeDataStore`,
23
+ - `setDockVisibility`,`setTheme`,`show`
20
24
 
21
25
  ### Rust
22
26
  - `emit` - Emit method is updated to handle in this plugin.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tauri-remote-ui",
3
3
  "license": "MIT",
4
- "version": "0.25.0",
4
+ "version": "0.26.0",
5
5
  "author": "DraviaVemal",
6
6
  "description": "A Tauri plugin that exposes the application's UI to a web browser, allowing full interaction while the native app continues running. This enables end-to-end UI testing using existing web-based testing tools without requiring modifications to the app itself.",
7
7
  "type": "module",