From cc63614f1e4415f847ad14cb75ff79a9ade44184 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:49:08 +0100 Subject: [PATCH] publish new versions (#471) Co-authored-by: FabianLars --- .changes/stronghold-arg-name.md | 5 ----- .changes/stronghold-argon2.md | 5 ----- .changes/stronghold-constructor.md | 5 ----- .changes/tray-position.md | 5 ----- .changes/window-state-zero-positions.md | 8 -------- plugins/positioner/CHANGELOG.md | 5 +++++ plugins/positioner/Cargo.toml | 6 ++---- plugins/window-state/CHANGELOG.md | 11 +++++++++++ plugins/window-state/Cargo.toml | 4 +--- 9 files changed, 19 insertions(+), 35 deletions(-) delete mode 100644 .changes/stronghold-arg-name.md delete mode 100644 .changes/stronghold-argon2.md delete mode 100644 .changes/stronghold-constructor.md delete mode 100644 .changes/tray-position.md delete mode 100644 .changes/window-state-zero-positions.md create mode 100644 plugins/window-state/CHANGELOG.md diff --git a/.changes/stronghold-arg-name.md b/.changes/stronghold-arg-name.md deleted file mode 100644 index 61efc0ed..00000000 --- a/.changes/stronghold-arg-name.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stronghold-js": patch ---- - -Change the argument name of the `Stronghold.remove` from `location` to `recordPath` to match the Stronghold command argument diff --git a/.changes/stronghold-argon2.md b/.changes/stronghold-argon2.md deleted file mode 100644 index 598e4f80..00000000 --- a/.changes/stronghold-argon2.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stronghold": patch ---- - -Added `Builder::with_argon2`. diff --git a/.changes/stronghold-constructor.md b/.changes/stronghold-constructor.md deleted file mode 100644 index 99966095..00000000 --- a/.changes/stronghold-constructor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stronghold-js": minor ---- - -Added `Stronghold.load` and removed its constructor. diff --git a/.changes/tray-position.md b/.changes/tray-position.md deleted file mode 100644 index c1fa71cb..00000000 --- a/.changes/tray-position.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"positioner": patch ---- - -`TrayLeft`, `TrayRight` and `TrayCenter` will now position the window according to the tray position relative to the monitor dimensions to prevent windows being displayed partially off-screen. diff --git a/.changes/window-state-zero-positions.md b/.changes/window-state-zero-positions.md deleted file mode 100644 index 14e89087..00000000 --- a/.changes/window-state-zero-positions.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"window-state": "patch" ---- - -Address a couple of issues with restoring positions: - -- Fix restoring window positions correctly when the top-left corner of the window was outside of the monitor. -- Fix restore maximization state only maximized on main monitor. diff --git a/plugins/positioner/CHANGELOG.md b/plugins/positioner/CHANGELOG.md index 71199780..bc9a2ae2 100644 --- a/plugins/positioner/CHANGELOG.md +++ b/plugins/positioner/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.5] + +- `TrayLeft`, `TrayRight` and `TrayCenter` will now position the window according to the tray position relative to the monitor dimensions to prevent windows being displayed partially off-screen. + - [3d27909](https://github.com/tauri-apps/plugins-workspace/commit/3d279094d44be78cdc5d1de3938f1414e13db6b0) fix(positioner): Prevent tray relative windows from being moved off-screen ([#291](https://github.com/tauri-apps/plugins-workspace/pull/291)) on 2023-09-27 + ## \[0.2.7] - Update Tauri to v1.0.0 diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index 11623b33..2e925e21 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -1,14 +1,12 @@ [package] name = "tauri-plugin-positioner" -version = "1.0.4" +version = "1.0.5" description = "Position your windows at well-known locations." authors = { workspace = true } license = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] serde = { workspace = true } serde_json = { workspace = true } @@ -18,4 +16,4 @@ thiserror = { workspace = true } serde_repr = "0.1" [features] -system-tray = [ "tauri/system-tray" ] \ No newline at end of file +system-tray = [ "tauri/system-tray" ] diff --git a/plugins/window-state/CHANGELOG.md b/plugins/window-state/CHANGELOG.md new file mode 100644 index 00000000..a05ab29e --- /dev/null +++ b/plugins/window-state/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +## \[0.1.1] + +- Address a couple of issues with restoring positions: + +- Fix restoring window positions correctly when the top-left corner of the window was outside of the monitor. + +- 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 diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index cdf6955e..81172a80 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -1,14 +1,12 @@ [package] name = "tauri-plugin-window-state" -version = "0.1.0" +version = "0.1.1" description = "Save window positions and sizes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] serde = { workspace = true } serde_json = { workspace = true }