update tools versions

This commit is contained in:
Fabian-Lars 2026-01-28 20:40:41 +01:00 committed by GitHub
parent d6f1dde4c9
commit b5573c1db2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -270,20 +270,20 @@ fn prepare_tools(
let fstype = if squashfs { "squashfs" } else { "dwarfs" };
let uruntime = tools_path.join(format!("uruntime-appimage-{fstype}-{arch}"));
if !uruntime.exists() {
let data = download(&format!("https://github.com/VHSgunzo/uruntime/releases/download/v0.4.5/uruntime-appimage-{fstype}-{arch}"))?;
let data = download(&format!("https://github.com/VHSgunzo/uruntime/releases/download/v0.5.6/uruntime-appimage-{fstype}-{arch}"))?;
write_and_make_executable(&uruntime, data)?;
}
let uruntime_lite = tools_path.join(format!("uruntime-appimage-{fstype}-lite-{arch}"));
if !uruntime_lite.exists() {
let data = download(&format!("https://github.com/VHSgunzo/uruntime/releases/download/v0.4.5/uruntime-appimage-{fstype}-lite-{arch}"))?;
let data = download(&format!("https://github.com/VHSgunzo/uruntime/releases/download/v0.5.6/uruntime-appimage-{fstype}-lite-{arch}"))?;
write_and_make_executable(&uruntime_lite, data)?;
}
let sharun_aio = tools_path.join(format!("sharun-{arch}-aio"));
if !sharun_aio.exists() {
let data = download(&format!(
"https://github.com/VHSgunzo/sharun/releases/download/v0.7.4/sharun-{arch}-aio"
"https://github.com/VHSgunzo/sharun/releases/download/v0.7.9/sharun-{arch}-aio"
))?;
write_and_make_executable(&sharun_aio, data)?;
}