feat: osu! updating and launching does now work

This commit is contained in:
2025-07-03 22:10:38 +02:00
parent bd5eb97f6e
commit 807485a7f3
7 changed files with 200 additions and 46 deletions

View File

@@ -5,7 +5,8 @@ pub mod commands;
pub mod utils;
use crate::commands::{
find_osu_installation, get_beatmapsets_count, get_hwid, get_osu_release_stream,
get_osu_version, get_skins_count, run_osu_updater, set_osu_config_value, valid_osu_folder,
get_osu_version, get_skins_count, run_osu, run_osu_updater, set_osu_config_value,
set_osu_user_config_value, valid_osu_folder,
};
#[cfg_attr(mobile, tauri::mobile_entry_point)]
@@ -32,7 +33,9 @@ pub fn run() {
get_osu_version,
get_osu_release_stream,
set_osu_config_value,
run_osu_updater
set_osu_user_config_value,
run_osu_updater,
run_osu
])
.plugin(tauri_plugin_fs::init())
.plugin(tauri_plugin_dialog::init())