From 44b133278217b9c4ca4091f61ceefc6409aa68eb Mon Sep 17 00:00:00 2001 From: the Sane <3657071+the-sane@users.noreply.github.com> Date: Fri, 18 Mar 2022 17:27:16 -0400 Subject: [PATCH] Add new dxvk source --- lug-helper.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lug-helper.sh b/lug-helper.sh index 3180a1b..d6ff3c9 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -132,6 +132,7 @@ dxvk_dir="$data_dir/lutris/runtime/dxvk" dxvk_sources=( "Sporif Async" "https://api.github.com/repos/Sporif/dxvk-async/releases" "/dev/null" "https://api.github.com/repos/gort818/dxvk/releases" + "gnusenpai" "https://api.github.com/repos/gnusenpai/dxvk/releases" ) # Set a maximum number of versions to display from each download url @@ -1030,6 +1031,9 @@ download_install() { *.tar.xz) download_name="$(basename "$download_file" .tar.xz)" ;; + *.tar.zst) + download_name="$(basename "$download_file" .tar.zst)" + ;; *) debug_print exit "Unknown archive filetype in download_install function. Aborting." ;; @@ -1231,7 +1235,10 @@ download_select_install() { ;; *.tar.xz) download_name="$(basename "${download_versions[i]}" .tar.xz)" - ;; + ;; + *.tar.zst) + download_name="$(basename "${download_versions[i]}" .tar.zst)" + ;; *) debug_print exit "Unknown archive filetype in download_select_install function. Aborting." ;;