modified: src/main.rs

modified:   src/util.rs
This commit is contained in:
Michael Wain 2025-03-25 01:25:30 +03:00
parent 2977e28991
commit c64d8729e3
2 changed files with 15 additions and 1 deletions

View File

@ -344,8 +344,15 @@ async fn main() {
"check_updates" => {
//
if let Ok(Some(file_url)) = launcher::check_updates().await {
responder.respond(Response::new(serde_json::to_vec(&UIMessage { params: vec!["sidebar_off".to_string(), "show_loading".to_string(), "update_downloads".to_string(), "Updating launcher...".to_string(), "100".to_string()] }).unwrap()));
let current_exe = std::env::current_exe().unwrap();
let mut downloaded_file = std::env::current_dir().unwrap();
downloaded_file.push("launcher_new.exe");
util::simple_download(&file_url, downloaded_file.to_str().unwrap()).await.unwrap();
let _ = std::fs::rename(&current_exe, "old_launcher.bak");
let _ = std::fs::rename(downloaded_file, current_exe);
let _ = std::fs::remove_file("old_launcher.bak");
std::process::exit(0);
}
}
_ => {}

View File

@ -21,6 +21,13 @@ pub async fn get_image(url: &str) -> Result<String, Box<dyn Error + Send + Sync>
Ok(format!("data:image/png;base64,{}", base64_string))
}
pub async fn simple_download(url: &str, file_path: &str) -> Result<(), Box<dyn Error + Send + Sync>> {
let bytes = surf::get(url).recv_bytes().await?;
let mut f = File::create(file_path).await?;
f.write_all(&bytes).await?;
Ok(())
}
pub async fn download_file(url: &str, file_path: &str, sender: UnboundedSender<(usize, String)>, status: &str, join: bool) -> Result<(), Box<dyn std::error::Error>> {
let url = url.to_string();
let file_path = file_path.to_string();