From a2da7220be889a80619fc59a995fdffdb1b285fd Mon Sep 17 00:00:00 2001 From: VHSgunzo Date: Sun, 28 Apr 2024 16:14:58 +0300 Subject: [PATCH] v0.78.4.8 --- CHANGELOG.md | 5 +++++ lux-wine | 2 +- lwrap/PKGBUILD | 2 +- lwrap/lwrap | 6 +++--- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43b86fa..bd662cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v0.78.4.8 + +* Update [lwrun](https://huggingface.co/lux-wine/lwrun/tree/main/releases/v0.39.1) packages +* Fix lwrap WGET_ARGS + # v0.78.4.7 * Fix auto create shortcut for `Yandex Music` diff --git a/lux-wine b/lux-wine index 8a404d4..64e6cb6 100755 --- a/lux-wine +++ b/lux-wine @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export LW_VERSION="0.78.4.7" +export LW_VERSION="0.78.4.8" export LW_DEVELOPERS="VHSgunzo" export RED='\033[1;91m' diff --git a/lwrap/PKGBUILD b/lwrap/PKGBUILD index e269bbd..dc2680a 100644 --- a/lwrap/PKGBUILD +++ b/lwrap/PKGBUILD @@ -2,7 +2,7 @@ pkgname='lwrap' pkgver='0.78.4' -pkgrel='7' +pkgrel='8' pkgdesc='Lux Wine wrapper for RunImage container' arch=('x86_64') url='https://github.com/VHSgunzo/lux-wine' diff --git a/lwrap/lwrap b/lwrap/lwrap index b7eddc2..ba8014d 100755 --- a/lwrap/lwrap +++ b/lwrap/lwrap @@ -775,7 +775,7 @@ try_dl() { fi if is_url "$URL" then - WGET_ARGS=(-q --no-check-certificate --content-disposition -t 3 -T 5 -w 0.5 "$URL" -O "$FILEDIR/$FILENAME") + WGET_ARGS=(--no-check-certificate --content-disposition -t 3 -T 5 -w 0.5 "$URL" -O "$FILEDIR/$FILENAME") [ ! -d "$FILEDIR" ] && \ mkdir -p "$FILEDIR" if [[ "$NOT_TERM" == 1 && "$NO_DL_GUI" != 1 ]] && \ @@ -868,10 +868,10 @@ try_dl() { curl -R --progress-bar --insecure --fail -L "$URL" -o "$FILEDIR/$FILENAME" elif is_exe_exist wget2 then - wget2 --force-progress "${WGET_ARGS[@]}" + wget2 -q --force-progress "${WGET_ARGS[@]}" elif is_exe_exist wget then - wget --show-progress "${WGET_ARGS[@]}" + wget -q --show-progress "${WGET_ARGS[@]}" else err_no_downloader fi