mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-12 18:41:27 +02:00
Compare commits
5 Commits
c018edbfaa
...
e224ea22c7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e224ea22c7 | ||
|
|
6dcd0bff55 | ||
|
|
b6c99e5464 | ||
|
|
6234e0901d | ||
|
|
929d3b435a |
20
.github/workflows/onpush_builder.yaml
vendored
20
.github/workflows/onpush_builder.yaml
vendored
@@ -173,26 +173,6 @@ jobs:
|
|||||||
- name: Build ${{ matrix.addon }} add-on (attempt 1)
|
- name: Build ${{ matrix.addon }} add-on (attempt 1)
|
||||||
id: builderstep1
|
id: builderstep1
|
||||||
if: steps.check.outputs.build_arch == 'true' && steps.dockerfile_check.outputs.has_dockerfile == 'true'
|
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
|
uses: home-assistant/builder@2025.11.0
|
||||||
env:
|
env:
|
||||||
CAS_API_KEY: ${{ secrets.CAS_API_KEY }}
|
CAS_API_KEY: ${{ secrets.CAS_API_KEY }}
|
||||||
|
|||||||
@@ -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)
|
## 5.1.4-15 (08-02-2026)
|
||||||
- Support preshared keys (airvpn for example)
|
- Support preshared keys (airvpn for example)
|
||||||
- Support multiple address fields
|
- Support multiple address fields
|
||||||
|
|||||||
@@ -142,4 +142,4 @@ schema:
|
|||||||
slug: qbittorrent
|
slug: qbittorrent
|
||||||
udev: true
|
udev: true
|
||||||
url: https://github.com/alexbelgium/hassio-addons
|
url: https://github.com/alexbelgium/hassio-addons
|
||||||
version: "5.1.4-15"
|
version: "5.1.4-16"
|
||||||
|
|||||||
@@ -89,6 +89,15 @@ sed -i -e "/CSRFProtection/d" \
|
|||||||
# sed -i "$LINE i\Connection\\\PortRangeMin=6881" qBittorrent.conf
|
# sed -i "$LINE i\Connection\\\PortRangeMin=6881" qBittorrent.conf
|
||||||
sed -i "s|6881|59595|g" qBittorrent.conf # Correction if required
|
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 #
|
# SSL CONFIG #
|
||||||
################
|
################
|
||||||
|
|||||||
Reference in New Issue
Block a user