Compare commits

...

2 Commits

Author SHA1 Message Date
the Sane
28051a135a
Bump version 2022-03-18 17:28:43 -04:00
the Sane
44b1332782
Add new dxvk source 2022-03-18 17:27:16 -04:00

View File

@ -132,6 +132,7 @@ dxvk_dir="$data_dir/lutris/runtime/dxvk"
dxvk_sources=( dxvk_sources=(
"Sporif Async" "https://api.github.com/repos/Sporif/dxvk-async/releases" "Sporif Async" "https://api.github.com/repos/Sporif/dxvk-async/releases"
"/dev/null" "https://api.github.com/repos/gort818/dxvk/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 # Set a maximum number of versions to display from each download url
@ -169,7 +170,7 @@ lug_wiki="https://github.com/starcitizen-lug/information-howtos/wiki"
# Github repo and script version info # Github repo and script version info
repo="starcitizen-lug/lug-helper" repo="starcitizen-lug/lug-helper"
releases_url="https://github.com/$repo/releases" releases_url="https://github.com/$repo/releases"
current_version="v1.18" current_version="v1.19"
############################################################################ ############################################################################
############################################################################ ############################################################################
@ -1030,6 +1031,9 @@ download_install() {
*.tar.xz) *.tar.xz)
download_name="$(basename "$download_file" .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." debug_print exit "Unknown archive filetype in download_install function. Aborting."
;; ;;
@ -1231,7 +1235,10 @@ download_select_install() {
;; ;;
*.tar.xz) *.tar.xz)
download_name="$(basename "${download_versions[i]}" .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." debug_print exit "Unknown archive filetype in download_select_install function. Aborting."
;; ;;