qbittorrent: bump version to 5.1.4-16

This commit is contained in:
Alexandre
2026-02-16 19:50:29 +01:00
parent c018edbfaa
commit 929d3b435a
3 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
## 5.1.4-16 (16-02-2026)
- Fix interface binding when VPN is disabled, so qBittorrent can use all available interfaces instead of staying on a previous VPN interface
## 5.1.4-15 (08-02-2026)
- Support preshared keys (airvpn for example)
- Support multiple address fields

View File

@@ -142,4 +142,4 @@ schema:
slug: qbittorrent
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "5.1.4-15"
version: "5.1.4-16"

View File

@@ -89,6 +89,15 @@ sed -i -e "/CSRFProtection/d" \
# sed -i "$LINE i\Connection\\\PortRangeMin=6881" qBittorrent.conf
sed -i "s|6881|59595|g" qBittorrent.conf # Correction if required
#########################
# Interface binding mode #
#########################
if ! bashio::config.true 'openvpn_enabled' && ! bashio::config.true 'wireguard_enabled'; then
sed -i '/Interface/d' qBittorrent.conf
bashio::log.info "No VPN selected: qBittorrent interface binding removed (all interfaces allowed)"
fi
################
# SSL CONFIG #
################