diff --git a/src-tauri/src/system_helpers.rs b/src-tauri/src/system_helpers.rs index 4fda4b6..15cd450 100644 --- a/src-tauri/src/system_helpers.rs +++ b/src-tauri/src/system_helpers.rs @@ -97,7 +97,7 @@ pub fn install_location() -> String { } #[tauri::command] -pub fn set_migoto_target(_path: String, migoto_path: String) -> bool { +pub fn set_migoto_target(migoto_path: String) -> bool { let mut migoto_pathbuf = PathBuf::from(migoto_path); migoto_pathbuf.pop(); diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 148038d..4eecc55 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -7,7 +7,7 @@ }, "package": { "productName": "Cultivation", - "version": "1.0.10" + "version": "1.0.23" }, "tauri": { "allowlist": { @@ -69,7 +69,7 @@ "fullscreen": false, "height": 730, "resizable": true, - "title": "Cultivation", + "title": "Cultivation: Thorny Edition", "width": 1280, "decorations": false } diff --git a/src/ui/components/menu/Options.tsx b/src/ui/components/menu/Options.tsx index e6196e3..04964f6 100644 --- a/src/ui/components/menu/Options.tsx +++ b/src/ui/components/menu/Options.tsx @@ -191,7 +191,6 @@ export default class Options extends React.Component { // Set game exe in Migoto ini invoke('set_migoto_target', { - path: this.state.game_install_path, migotoPath: value, }) }