diff --git a/client/Cargo.toml b/client/Cargo.toml index 5eae874..f75da20 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -4,7 +4,7 @@ path = "src/main.rs" [package] name = "lesavka_client" -version = "0.11.39" +version = "0.11.40" edition = "2024" [dependencies] diff --git a/client/src/launcher/ui_components.rs b/client/src/launcher/ui_components.rs index 443f4e8..d470c06 100644 --- a/client/src/launcher/ui_components.rs +++ b/client/src/launcher/ui_components.rs @@ -109,8 +109,8 @@ pub struct LauncherView { pub const LESAVKA_ICON_NAME: &str = "dev.lesavka.launcher"; const LESAVKA_ICON_SEARCH_PATH: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/assets/icons"); -const LAUNCHER_DEFAULT_WIDTH: i32 = 1380; -const LAUNCHER_DEFAULT_HEIGHT: i32 = 860; +const LAUNCHER_DEFAULT_WIDTH: i32 = 1188; +const LAUNCHER_DEFAULT_HEIGHT: i32 = 710; const OPERATIONS_RAIL_WIDTH: i32 = 288; const CAMERA_PREVIEW_VIEWPORT_HEIGHT: i32 = 72; const CAMERA_PREVIEW_VIEWPORT_WIDTH: i32 = 128; @@ -127,7 +127,9 @@ pub fn build_launcher_view( .title("Lesavka") .default_width(LAUNCHER_DEFAULT_WIDTH) .default_height(LAUNCHER_DEFAULT_HEIGHT) + .resizable(false) .build(); + window.set_size_request(LAUNCHER_DEFAULT_WIDTH, LAUNCHER_DEFAULT_HEIGHT); install_css(&window); install_window_icon(&window); diff --git a/common/Cargo.toml b/common/Cargo.toml index 9b09219..64a6357 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lesavka_common" -version = "0.11.39" +version = "0.11.40" edition = "2024" build = "build.rs" diff --git a/server/Cargo.toml b/server/Cargo.toml index 326d6ad..aaa4103 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -10,7 +10,7 @@ bench = false [package] name = "lesavka_server" -version = "0.11.39" +version = "0.11.40" edition = "2024" autobins = false