From d91d3827534212cfcde2c0b138d8c0f153a19876 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rik=20Levente?= <33373714+Levminer@users.noreply.github.com> Date: Tue, 16 Jul 2024 23:59:37 +0200 Subject: [PATCH] Settings fixes --- platforms/core/src/settings.rs | 2 +- platforms/core/tauri.windows.conf.json | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/platforms/core/src/settings.rs b/platforms/core/src/settings.rs index fd7db73..5ff545e 100644 --- a/platforms/core/src/settings.rs +++ b/platforms/core/src/settings.rs @@ -50,7 +50,7 @@ pub struct Settings { #[cfg(target_os = "windows")] fn get_settings_path() -> std::path::PathBuf { - std::path::PathBuf::from("C:\\ProgramData\\Cores") + std::path::PathBuf::from("C:\\ProgramData") } #[cfg(not(target_os = "windows"))] diff --git a/platforms/core/tauri.windows.conf.json b/platforms/core/tauri.windows.conf.json index 27f7d34..29a3c3f 100644 --- a/platforms/core/tauri.windows.conf.json +++ b/platforms/core/tauri.windows.conf.json @@ -2,6 +2,13 @@ "app": { "windows": [ { + "title": "Cores", + "width": 1900, + "height": 1000, + "minWidth": 600, + "minHeight": 500, + "maximized": true, + "theme": "Dark", "transparent": true, "windowEffects": { "effects": ["mica"]