From d9c8e6e728cb41a0b972836f63b70f05179693e8 Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Mon, 19 Jun 2023 21:40:53 +0200 Subject: [PATCH] feat: always download latest wivrn --- src/ui/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/app.rs b/src/ui/app.rs index b3d8d20..1ee33ae 100644 --- a/src/ui/app.rs +++ b/src/ui/app.rs @@ -419,7 +419,7 @@ impl SimpleComponent for App { )); self.download_wivrn_thread.set(Some(download_file( // TODO: always download latest - "https://github.com/Meumeu/WiVRn/releases/download/v0.4/WiVRn-oculus-release.apk".into(), + "https://github.com/Meumeu/WiVRn/releases/latest/download/WiVRn-oculus-release.apk".into(), wivrn_apk_download_path() ))); }