From 5733b9a894b9db90e03bc654fbf9cf58d9f605f6 Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Thu, 2 Jul 2026 16:59:07 -0400 Subject: [PATCH] update: fix in-app update download names (android-arm, linux tar.gz) The in-app updater built the ARM Android download as goblin-- android-arm.apk and the Linux download as .AppImage, but releases ship goblin--android-arm.apk (this build on) and a linux .tar.gz. On an older release the ARM apk was named -android.apk, so the in-app update 404'd. Releases now name the ARM apk -android-arm.apk and the updater targets the tar.gz, so Android and Linux in-app updates resolve. --- src/http/release.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/release.rs b/src/http/release.rs index b32d1997..71b106be 100644 --- a/src/http/release.rs +++ b/src/http/release.rs @@ -75,7 +75,7 @@ impl ReleaseInfo { if ARCH == ARM_ARCH { None } else { - Some(format!("goblin-{}-linux-x86_64.AppImage", self.tag_name)) + Some(format!("goblin-{}-linux-x86_64.tar.gz", self.tag_name)) } } OperatingSystem::Mac => None,