Skip to content

Commit

Permalink
v0.78.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
VHSgunzo committed Apr 28, 2024
1 parent 679578b commit a2da722
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion lux-wine
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion lwrap/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
6 changes: 3 additions & 3 deletions lwrap/lwrap
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]] && \
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a2da722

Please sign in to comment.