diff --git a/.changes/pre.json b/.changes/pre.json index c467a753..7eaa50c0 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -7,12 +7,14 @@ ".changes/clipboard-manager-image.md", ".changes/clipboard-refactor.md", ".changes/clipboard-text-command-rename.md", + ".changes/deep-link-desktop.md", ".changes/dialog-can-create-directories.md", ".changes/dialog-linux-freeze.md", ".changes/dialog-main-thread.md", ".changes/dialog-path-return-mismatch.md", ".changes/enhance-fs-scope-type.md", ".changes/enhance-http-scope.md", + ".changes/enhance-shell-raw-out.md", ".changes/feat-log-attachlogger.md", ".changes/feat-single-instance-semver.md", ".changes/feat-websocket-tls-connector.md", @@ -35,6 +37,7 @@ ".changes/global-shortcut-refactor.md", ".changes/http-unsafe-headers.md", ".changes/http-user-agent.md", + ".changes/impl-ext-for-webview-windows.md", ".changes/msrv-1.75.md", ".changes/notification-fix-dev-check.md", ".changes/public-with-store.md", @@ -42,6 +45,9 @@ ".changes/reqwest-0.12.md", ".changes/restore-default-window-state.md", ".changes/scoped-resources-table.md", + ".changes/shell-command-execute-extra-new-lines.md", + ".changes/shell-command-execute-speed.md", + ".changes/shell-command-lost-events.md", ".changes/shell-fix-schema-command-property-name.md", ".changes/shell-shellexcute.md", ".changes/single-instance.macos.md", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 50125bed..23e1bb88 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.6] + +### Dependencies + +- Upgraded to `shell-js@2.0.0-beta.4` + ## \[2.0.0-beta.5] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 9d6a1649..29a81a5f 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "svelte-app", "private": true, - "version": "2.0.0-beta.5", + "version": "2.0.0-beta.6", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -22,7 +22,7 @@ "@tauri-apps/plugin-notification": "2.0.0-beta.3", "@tauri-apps/plugin-os": "2.0.0-beta.3", "@tauri-apps/plugin-process": "2.0.0-beta.3", - "@tauri-apps/plugin-shell": "2.0.0-beta.3", + "@tauri-apps/plugin-shell": "2.0.0-beta.4", "@tauri-apps/plugin-updater": "2.0.0-beta.3", "@zerodevx/svelte-json-view": "1.0.9" }, diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 6bc0e272..6b10ff4a 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.8] + +### Dependencies + +- Upgraded to `shell@2.0.0-beta.5` + ## \[2.0.0-beta.7] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 382109ab..168436f9 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "api" publish = false -version = "2.0.0-beta.7" +version = "2.0.0-beta.8" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -27,7 +27,7 @@ tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ] tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.5", features = [ "windows7-compat" ] } tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.4" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.4" } -tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.4" } +tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.5" } [dependencies.tauri] workspace = true diff --git a/plugins/deep-link/CHANGELOG.md b/plugins/deep-link/CHANGELOG.md index c78a12d4..24627419 100644 --- a/plugins/deep-link/CHANGELOG.md +++ b/plugins/deep-link/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.4] + +- [`021d23be`](https://github.com/tauri-apps/plugins-workspace/commit/021d23bef330de4ce001993e0ef2c7ab7815f044)([#916](https://github.com/tauri-apps/plugins-workspace/pull/916)) Added desktop support. + ## \[2.0.0-beta.3] - [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17. diff --git a/plugins/deep-link/Cargo.toml b/plugins/deep-link/Cargo.toml index e76fda41..8d6a9efe 100644 --- a/plugins/deep-link/Cargo.toml +++ b/plugins/deep-link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-deep-link" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" description = "Set your Tauri application as the default handler for an URL" authors = { workspace = true } license = { workspace = true } @@ -34,5 +34,5 @@ dunce = "1" windows-registry = "0.1" windows-result = "0.1" -[target.'cfg(target_os = "linux")'.dependencies] +[target."cfg(target_os = \"linux\")".dependencies] rust-ini = "0.21" diff --git a/plugins/deep-link/examples/app/CHANGELOG.md b/plugins/deep-link/examples/app/CHANGELOG.md index 8cae8a1e..e745bb9a 100644 --- a/plugins/deep-link/examples/app/CHANGELOG.md +++ b/plugins/deep-link/examples/app/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.4] + +### Dependencies + +- Upgraded to `deep-link-js@2.0.0-beta.4` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/plugins/deep-link/examples/app/package.json b/plugins/deep-link/examples/app/package.json index d2a2be0b..a3921680 100644 --- a/plugins/deep-link/examples/app/package.json +++ b/plugins/deep-link/examples/app/package.json @@ -1,7 +1,7 @@ { "name": "deep-link-example", "private": true, - "version": "2.0.0-beta.3", + "version": "2.0.0-beta.4", "type": "module", "scripts": { "dev": "vite", @@ -11,7 +11,7 @@ }, "dependencies": { "@tauri-apps/api": "2.0.0-beta.11", - "@tauri-apps/plugin-deep-link": "2.0.0-beta.3" + "@tauri-apps/plugin-deep-link": "2.0.0-beta.4" }, "devDependencies": { "@tauri-apps/cli": "2.0.0-beta.16", diff --git a/plugins/deep-link/package.json b/plugins/deep-link/package.json index 95c89ecb..bba8a5d8 100644 --- a/plugins/deep-link/package.json +++ b/plugins/deep-link/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-deep-link", - "version": "2.0.0-beta.3", + "version": "2.0.0-beta.4", "description": "Set your Tauri application as the default handler for an URL", "license": "MIT or APACHE-2.0", "authors": [ diff --git a/plugins/positioner/CHANGELOG.md b/plugins/positioner/CHANGELOG.md index c7fe1b83..a42a47f8 100644 --- a/plugins/positioner/CHANGELOG.md +++ b/plugins/positioner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.5] + +- [`d9de5b19`](https://github.com/tauri-apps/plugins-workspace/commit/d9de5b19d1e950c06f0915ae92a862acb266d108)([#1283](https://github.com/tauri-apps/plugins-workspace/pull/1283)) Implement `WindowExt` for `WebviewWindow`. + ## \[2.0.0-beta.3] - [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17. diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index 74eeae92..20456466 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-positioner" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" description = "Position your windows at well-known locations." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/shell/CHANGELOG.md b/plugins/shell/CHANGELOG.md index 027140cc..2cb6a42f 100644 --- a/plugins/shell/CHANGELOG.md +++ b/plugins/shell/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[2.0.0-beta.4] + +- [`eb1679b9`](https://github.com/tauri-apps/plugins-workspace/commit/eb1679b99780e5d2b867f5649a1ccc2f3f70ab56)([#1299](https://github.com/tauri-apps/plugins-workspace/pull/1299)) Fix `Command.execute` API including extra new lines. +- [`eb1679b9`](https://github.com/tauri-apps/plugins-workspace/commit/eb1679b99780e5d2b867f5649a1ccc2f3f70ab56)([#1299](https://github.com/tauri-apps/plugins-workspace/pull/1299)) Improve the speed of the JS `Command.execute` API + ## \[2.0.0-beta.3] - [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17. @@ -66,3 +71,7 @@ 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! .com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! +f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! + 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! + .com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! + 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! diff --git a/plugins/shell/Cargo.toml b/plugins/shell/Cargo.toml index 66240fb4..4341bdaf 100644 --- a/plugins/shell/Cargo.toml +++ b/plugins/shell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-shell" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" description = "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/shell/package.json b/plugins/shell/package.json index 971299f2..3691ee8f 100644 --- a/plugins/shell/package.json +++ b/plugins/shell/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-shell", - "version": "2.0.0-beta.3", + "version": "2.0.0-beta.4", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/window-state/CHANGELOG.md b/plugins/window-state/CHANGELOG.md index 94ace40d..94c7d693 100644 --- a/plugins/window-state/CHANGELOG.md +++ b/plugins/window-state/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.7] + +- [`d9de5b19`](https://github.com/tauri-apps/plugins-workspace/commit/d9de5b19d1e950c06f0915ae92a862acb266d108)([#1283](https://github.com/tauri-apps/plugins-workspace/pull/1283)) Implement `WindowExt` for `WebviewWindow`. + ## \[2.0.0-beta.4] - [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17. @@ -83,4 +87,4 @@ - Fix restore maximization state only maximized on main monitor. - [70d9908](https://github.com/tauri-apps/plugins-workspace/commit/70d99086de3a58189d65c49954a3495972880725) fix(window-state): restore window position if the one of the window corners intersects with monitor ([#898](https://github.com/tauri-apps/plugins-workspace/pull/898)) on 2024-01-25 -://github.com/tauri-apps/plugins-workspace/commit/70d99086de3a58189d65c49954a3495972880725) fix(window-state): restore window position if the one of the window corners intersects with monitor ([#898](https://github.com/tauri-apps/plugins-workspace/pull/898)) on 2024-01-25 + ://github.com/tauri-apps/plugins-workspace/commit/70d99086de3a58189d65c49954a3495972880725) fix(window-state): restore window position if the one of the window corners intersects with monitor ([#898](https://github.com/tauri-apps/plugins-workspace/pull/898)) on 2024-01-25 diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index e4b8222e..00e815c4 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-window-state" -version = "2.0.0-beta.6" +version = "2.0.0-beta.7" description = "Save window positions and sizes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ad36ea84..04504d28 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -106,7 +106,7 @@ importers: specifier: 2.0.0-beta.3 version: link:../../plugins/process '@tauri-apps/plugin-shell': - specifier: 2.0.0-beta.3 + specifier: 2.0.0-beta.4 version: link:../../plugins/shell '@tauri-apps/plugin-updater': specifier: 2.0.0-beta.3 @@ -191,7 +191,7 @@ importers: specifier: 2.0.0-beta.11 version: 2.0.0-beta.11 '@tauri-apps/plugin-deep-link': - specifier: 2.0.0-beta.3 + specifier: 2.0.0-beta.4 version: link:../.. devDependencies: '@tauri-apps/cli':