diff --git a/.changes/global-hotkey-08.md b/.changes/global-hotkey-08.md deleted file mode 100644 index 141f6661e..000000000 --- a/.changes/global-hotkey-08.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -global-shortcut: patch -global-shortcut-js: patch ---- - -Update crate `global-hotkey` to 0.8 to fix cpu usage while pressing the keys on windows and to add F13-F24 mappings on Linux/X11. diff --git a/.changes/positioner-panic.md b/.changes/positioner-panic.md deleted file mode 100644 index deeb7aac0..000000000 --- a/.changes/positioner-panic.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -positioner: patch -positioner-js: patch ---- - -Removed panics and replaced them with error handling. \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 13c133f8e..48120a09d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "api" -version = "2.0.43" +version = "2.0.44" dependencies = [ "log", "serde", @@ -6592,7 +6592,7 @@ dependencies = [ [[package]] name = "tauri-plugin-global-shortcut" -version = "2.3.1" +version = "2.3.2" dependencies = [ "global-hotkey", "log", @@ -6757,7 +6757,7 @@ dependencies = [ [[package]] name = "tauri-plugin-positioner" -version = "2.3.1" +version = "2.3.2" dependencies = [ "log", "serde", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 5718bd20f..4c335e95c 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.40] + +### Dependencies + +- Upgraded to `global-shortcut-js@2.3.2` + ## \[2.0.39] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 92625c7ee..d301b04be 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.39", + "version": "2.0.40", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -18,7 +18,7 @@ "@tauri-apps/plugin-dialog": "^2.7.1", "@tauri-apps/plugin-fs": "^2.5.1", "@tauri-apps/plugin-geolocation": "^2.3.2", - "@tauri-apps/plugin-global-shortcut": "^2.3.1", + "@tauri-apps/plugin-global-shortcut": "^2.3.2", "@tauri-apps/plugin-haptics": "^2.3.2", "@tauri-apps/plugin-http": "^2.5.9", "@tauri-apps/plugin-nfc": "^2.3.5", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 5c3bc1e2b..e10fd5363 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.44] + +### Dependencies + +- Upgraded to `global-shortcut@2.3.2` + ## \[2.0.43] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 9fd5f8930..ba0041391 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.43" +version = "2.0.44" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -56,7 +56,7 @@ features = [ [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.4.1" } -tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.3.1" } +tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.3.2" } tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.10.1" } tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" } diff --git a/plugins/global-shortcut/CHANGELOG.md b/plugins/global-shortcut/CHANGELOG.md index 90280a289..4ac214112 100644 --- a/plugins/global-shortcut/CHANGELOG.md +++ b/plugins/global-shortcut/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.3.2] + +- [`cb863d57`](https://github.com/tauri-apps/plugins-workspace/commit/cb863d57c60790efc41b2bd77d065bd91b4ef2b1) ([#3408](https://github.com/tauri-apps/plugins-workspace/pull/3408) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) Update crate `global-hotkey` to 0.8 to fix cpu usage while pressing the keys on windows and to add F13-F24 mappings on Linux/X11. + ## \[2.3.1] - [`93426f85`](https://github.com/tauri-apps/plugins-workspace/commit/93426f85120f49beb9f40222bff45185a32d54a9) Fixed an issue that caused docs.rs builds to fail. No user facing changes. diff --git a/plugins/global-shortcut/Cargo.toml b/plugins/global-shortcut/Cargo.toml index 4a8b8a162..6a8be5bcf 100644 --- a/plugins/global-shortcut/Cargo.toml +++ b/plugins/global-shortcut/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-global-shortcut" -version = "2.3.1" +version = "2.3.2" description = "Register global hotkeys listeners on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/global-shortcut/package.json b/plugins/global-shortcut/package.json index d875a83cd..21d2920c3 100644 --- a/plugins/global-shortcut/package.json +++ b/plugins/global-shortcut/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-global-shortcut", - "version": "2.3.1", + "version": "2.3.2", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/positioner/CHANGELOG.md b/plugins/positioner/CHANGELOG.md index a14f47791..5fd9c3ebd 100644 --- a/plugins/positioner/CHANGELOG.md +++ b/plugins/positioner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.3.2] + +- [`c0d64bf7`](https://github.com/tauri-apps/plugins-workspace/commit/c0d64bf7d9c0f2c8ed1d2614745e15bbb3cde6a7) ([#3420](https://github.com/tauri-apps/plugins-workspace/pull/3420) by [@UrsDeSwardt](https://github.com/tauri-apps/plugins-workspace/../../UrsDeSwardt)) Removed panics and replaced them with error handling. + ## \[2.3.1] - [`93426f85`](https://github.com/tauri-apps/plugins-workspace/commit/93426f85120f49beb9f40222bff45185a32d54a9) Fixed an issue that caused docs.rs builds to fail. No user facing changes. diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index ea2e348f7..dec0a24e6 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-positioner" -version = "2.3.1" +version = "2.3.2" description = "Position your windows at well-known locations." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/positioner/package.json b/plugins/positioner/package.json index 8233e5830..e91377dec 100644 --- a/plugins/positioner/package.json +++ b/plugins/positioner/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-positioner", - "version": "2.3.1", + "version": "2.3.2", "description": "Position your windows at well-known locations.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0e154ec75..201e1051c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -75,7 +75,7 @@ importers: specifier: ^2.3.2 version: link:../../plugins/geolocation '@tauri-apps/plugin-global-shortcut': - specifier: ^2.3.1 + specifier: ^2.3.2 version: link:../../plugins/global-shortcut '@tauri-apps/plugin-haptics': specifier: ^2.3.2