diff --git a/client/Cargo.toml b/client/Cargo.toml index bc6cfae..fabbf36 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -4,7 +4,7 @@ path = "src/main.rs" [package] name = "lesavka_client" -version = "0.11.4" +version = "0.11.5" edition = "2024" [dependencies] diff --git a/client/src/launcher/preview.rs b/client/src/launcher/preview.rs index 628dbe3..59aff28 100644 --- a/client/src/launcher/preview.rs +++ b/client/src/launcher/preview.rs @@ -28,9 +28,9 @@ use tonic::{Request, transport::Channel}; use tracing::{debug, warn}; #[cfg(not(coverage))] -const PREVIEW_WIDTH: i32 = 640; +const PREVIEW_WIDTH: i32 = 960; #[cfg(not(coverage))] -const PREVIEW_HEIGHT: i32 = 360; +const PREVIEW_HEIGHT: i32 = 540; #[cfg(not(coverage))] const INLINE_PREVIEW_REQUEST_WIDTH: i32 = 960; #[cfg(not(coverage))] diff --git a/common/Cargo.toml b/common/Cargo.toml index 6e20c42..1fb3bf4 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lesavka_common" -version = "0.11.4" +version = "0.11.5" edition = "2024" build = "build.rs" diff --git a/common/src/cli.rs b/common/src/cli.rs index 5ee1fc0..8c0457c 100644 --- a/common/src/cli.rs +++ b/common/src/cli.rs @@ -17,6 +17,6 @@ mod tests { #[test] fn banner_includes_version() { - assert_eq!(banner("0.11.4"), "lesavka-common CLI (v0.11.4)"); + assert_eq!(banner("0.11.5"), "lesavka-common CLI (v0.11.5)"); } } diff --git a/server/Cargo.toml b/server/Cargo.toml index b97f6d9..46558e3 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -10,7 +10,7 @@ bench = false [package] name = "lesavka_server" -version = "0.11.4" +version = "0.11.5" edition = "2024" autobins = false