Compare commits

...

5 Commits

Author SHA1 Message Date
GitHub Actions
e224ea22c7 Revert 'Update qbittorrent version to 5.1.4-17' [nobuild] 2026-02-16 19:51:28 +00:00
Alexandre
6dcd0bff55 Update qbittorrent version to 5.1.4-17 2026-02-16 20:49:52 +01:00
Alexandre
b6c99e5464 Fix conditional check for building changed addons 2026-02-16 20:45:20 +01:00
Alexandre
6234e0901d Merge pull request #2484 from alexbelgium/codex/allow-any-network-interface-if-no-vpn-selected
Codex-generated pull request
2026-02-16 19:50:56 +01:00
Alexandre
929d3b435a qbittorrent: bump version to 5.1.4-16 2026-02-16 19:50:29 +01:00
4 changed files with 13 additions and 21 deletions

View File

@@ -173,26 +173,6 @@ jobs:
- name: Build ${{ matrix.addon }} add-on (attempt 1)
id: builderstep1
if: steps.check.outputs.build_arch == 'true' && steps.dockerfile_check.outputs.has_dockerfile == 'true'
continue-on-error: true
uses: home-assistant/builder@2025.11.0
env:
CAS_API_KEY: ${{ secrets.CAS_API_KEY }}
with:
args: |
${{ env.BUILD_ARGS }} \
--${{ matrix.arch }} \
--target "/data/${{ matrix.addon }}" \
--image "${{ steps.check.outputs.image }}" \
--docker-hub "ghcr.io/${{ github.repository_owner }}" \
--addon
- name: Wait 1 minute before retry
if: steps.check.outputs.build_arch == 'true' && steps.dockerfile_check.outputs.has_dockerfile == 'true' && steps.builderstep1.outcome == 'failure'
run: |
sleep 60
- name: Build ${{ matrix.addon }} add-on (attempt 2)
if: steps.check.outputs.build_arch == 'true' && steps.dockerfile_check.outputs.has_dockerfile == 'true' && steps.builderstep1.outcome == 'failure'
uses: home-assistant/builder@2025.11.0
env:
CAS_API_KEY: ${{ secrets.CAS_API_KEY }}

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 #
################