Merge pull request #2833 from juhenriquez/fix-builder-after-version-updates

Fix builder after app updates
This commit is contained in:
Alexandre
2026-07-09 07:04:15 +02:00
committed by GitHub
4 changed files with 3 additions and 5 deletions

View File

@@ -113,4 +113,3 @@ slug: bazarr_nas
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/bazarr
version: "1.6.0"
webui: "[PROTO:ssl]://[HOST]:[PORT:6767]"

View File

@@ -111,4 +111,3 @@ slug: prowlarr
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "nightly-2.5.1.5460-ls4"
webui: "[PROTO:ssl]://[HOST]:[PORT:9696]"

View File

@@ -52,7 +52,7 @@ RUN \
&& echo 'WebUI\LocalHostAuth=false' >> /defaults/qBittorrent.conf \
\
# Add vuetorrent
&& curl -f -s -S -O -J -L "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases | grep -o "http.*vuetorrent.zip" | head -1)" >/dev/null \
&& curl -f -s -S -O -J -L https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip >/dev/null \
&& unzip -o vuetorrent.zip -d / >/dev/null \
&& rm vuetorrent.zip >/dev/null

View File

@@ -198,7 +198,7 @@ if [ "$CUSTOMUI" = default ]; then
sed -i '/AlternativeUIEnabled/d' qBittorrent.conf
sed -i '/RootFolder/d' qBittorrent.conf
# Update ingress webui
curl -f -s -S -O -J -L "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases | grep -o "http.*vuetorrent.zip" | head -1)" > /dev/null
curl -f -s -S -O -J -L https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip > /dev/null
unzip -o vuetorrent.zip -d / > /dev/null
rm vuetorrent.zip
fi
@@ -211,7 +211,7 @@ if bashio::config.has_value 'customUI' && [ ! "$CUSTOMUI" = default ] && [ ! "$C
### Download WebUI
case $CUSTOMUI in
"vuetorrent")
curl -f -s -S -J -L -o /webui/release.zip "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases/latest | grep -o "http.*vuetorrent.zip" | head -1)" > /dev/null
curl -f -s -S -J -L -o /webui/release.zip https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip > /dev/null
;;
"qbit-matUI")