update: fix in-app update download names (android-arm, linux tar.gz)
The in-app updater built the ARM Android download as goblin-<tag>- android-arm.apk and the Linux download as .AppImage, but releases ship goblin-<tag>-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.
This commit is contained in:
+1
-1
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user