modified: src/launcher.rs

modified:   src/main.rs
	modified:   src/www/portable.html
This commit is contained in:
Michael Wain 2025-03-25 01:06:44 +03:00
parent 497dc6e94d
commit 2977e28991
3 changed files with 37 additions and 1 deletions

View File

@ -778,4 +778,24 @@ pub async fn get_random_bg() -> Result<Option<String>, Box<dyn Error + Send + Sy
return Ok(Some(["data:image/jpeg;base64,", &BASE64_STANDARD.encode(resp)].concat()));
}
Ok(None)
}
#[derive(Serialize, Deserialize)]
struct RemoteRelease {
tag_name: String,
assets: Vec<RemoteAsset>
}
#[derive(Serialize, Deserialize)]
struct RemoteAsset {
browser_download_url: String
}
pub async fn check_updates() -> Result<Option<String>, Box<dyn Error + Send + Sync>> {
let mut r = surf::get("https://gitea.awain.net/api/v1/repos/alterwain/XCraft/releases/latest").await?;
let release: RemoteRelease = r.body_json().await?;
if release.tag_name != env!("CARGO_PKG_VERSION") && !release.assets.is_empty() {
return Ok(Some(release.assets[0].browser_download_url.clone()));
}
Ok(None)
}

View File

@ -82,6 +82,9 @@ async fn main() {
if let Some((ui_action, params, responder)) = receiver.recv().await {
let ui_action = &ui_action[16..];
match ui_action {
"github" => {
Command::new("cmd").args(["/C", "start", "https://github.com/alterdekim/XCraft"]).spawn().unwrap();
},
"jquery" => responder.respond(Response::new(include_bytes!("js/jquery.js"))),
"skinview3d" => responder.respond(Response::new(include_bytes!("js/skinview3d.js"))),
"tailwind" => responder.respond(Response::new(include_bytes!("js/tailwind.js"))),
@ -338,6 +341,13 @@ async fn main() {
}
responder.respond(Response::new(serde_json::to_vec(&UIMessage { params: [vec!["load_screenshots".to_string()], svec].concat() }).unwrap()));
}
"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()));
}
}
_ => {}
}
}

View File

@ -388,7 +388,7 @@
</div>
<div class="absolute bottom-0 right-0 p-2">
<a class="text-3xl text-gray-300" href="https://github.com/alterdekim/XCraft">
<a class="text-3xl text-gray-300 cursor-pointer" onClick="openGithub()">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" class="icon icon-tabler icons-tabler-filled icon-tabler-brand-github"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5.315 2.1c.791 -.113 1.9 .145 3.333 .966l.272 .161l.16 .1l.397 -.083a13.3 13.3 0 0 1 4.59 -.08l.456 .08l.396 .083l.161 -.1c1.385 -.84 2.487 -1.17 3.322 -1.148l.164 .008l.147 .017l.076 .014l.05 .011l.144 .047a1 1 0 0 1 .53 .514a5.2 5.2 0 0 1 .397 2.91l-.047 .267l-.046 .196l.123 .163c.574 .795 .93 1.728 1.03 2.707l.023 .295l.007 .272c0 3.855 -1.659 5.883 -4.644 6.68l-.245 .061l-.132 .029l.014 .161l.008 .157l.004 .365l-.002 .213l-.003 3.834a1 1 0 0 1 -.883 .993l-.117 .007h-6a1 1 0 0 1 -.993 -.883l-.007 -.117v-.734c-1.818 .26 -3.03 -.424 -4.11 -1.878l-.535 -.766c-.28 -.396 -.455 -.579 -.589 -.644l-.048 -.019a1 1 0 0 1 .564 -1.918c.642 .188 1.074 .568 1.57 1.239l.538 .769c.76 1.079 1.36 1.459 2.609 1.191l.001 -.678l-.018 -.168a5.03 5.03 0 0 1 -.021 -.824l.017 -.185l.019 -.12l-.108 -.024c-2.976 -.71 -4.703 -2.573 -4.875 -6.139l-.01 -.31l-.004 -.292a5.6 5.6 0 0 1 .908 -3.051l.152 -.222l.122 -.163l-.045 -.196a5.2 5.2 0 0 1 .145 -2.642l.1 -.282l.106 -.253a1 1 0 0 1 .529 -.514l.144 -.047l.154 -.03z" /></svg>
</a>
</div>
@ -466,6 +466,10 @@
}
}
function openGithub() {
$.get("github", processParams);
}
function showAccountsSection() {
$.post({url: "fetch_credentials_list" }, processParams);
}
@ -770,6 +774,8 @@
$.get("fetch_bg", processParams);
showAccountsSection();
$.get("check_updates", processParams);
$('#slim-skin').on('change', function () {
$.post({ url: "set_skin_model", data: JSON.stringify({ params: [accountNick, accountDomain, $(this).is(':checked')+""] }) }, processParams);
});