12 Commits

Author SHA1 Message Date
github-actions
755f796a3f Github bot : image compressed 2025-12-21 23:06:34 +00:00
Alexandre
9e2f740df3 Add sysctl script to local sbin directory 2025-12-21 21:09:41 +01:00
Alexandre
aee0aa3915 Update config.yaml 2025-12-21 20:49:42 +01:00
Alexandre
3cf7987799 Remove homeassistant version from config.yaml 2025-12-21 17:29:55 +01:00
Alexandre
1b29b79d50 Remove duplicate ip6tables-legacy from ARG PACKAGES 2025-12-21 17:29:18 +01:00
Alexandre
a4f9ea7a29 Merge pull request #2292 from alexbelgium/codex/fix-issue-with-hassio-addons
Ensure wireguard sysctl wrapper is always used
2025-12-21 17:22:06 +01:00
Alexandre
06fdfa0232 Bump qbittorrent addon to 5.1.4-1 2025-12-21 17:21:37 +01:00
Alexandre
bc7f031fa9 Ensure wireguard sysctl wrapper is always used 2025-12-21 17:15:57 +01:00
Alexandre
a950f4b7ba Merge pull request #2291 from alexbelgium/codex/fix-wireguard-connection-failure
Add legacy iptables packages for WireGuard
2025-12-21 16:58:44 +01:00
Alexandre
4fca39886c Add legacy iptables packages for WireGuard 2025-12-21 16:58:29 +01:00
Alexandre
bac68d23e0 Merge pull request #2290 from alexbelgium/codex/fix-issue-2104-in-hassio-addons
Fix Seafile database option parsing
2025-12-21 16:54:55 +01:00
Alexandre
bc0bce90ae Fix Seafile database selection handling 2025-12-21 16:54:42 +01:00
10 changed files with 19 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

@@ -1,4 +1,7 @@
## 5.1.4-1 (21-12-2025)
- Fix WireGuard sysctl wrapper paths to resolve #2289.
## 5.1.4 (29-11-2025)
- Update to latest version from linuxserver/docker-qbittorrent (changelog : https://github.com/linuxserver/docker-qbittorrent/releases)
## 5.1.2-22 (24-11-2025)

View File

@@ -111,7 +111,7 @@ RUN chmod 744 /ha_automodules.sh && /ha_automodules.sh "$MODULES" && rm /ha_auto
# && chmod a+x /etc/s6-overlay/s6-rc.d/$SCRIPTSNAME/* ; done; fi
# Manual apps
ARG PACKAGES="wireguard-tools iptables ip6tables"
ARG PACKAGES="wireguard-tools iptables ip6tables iptables-legacy"
# Automatic apps & bashio
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh"

View File

@@ -68,7 +68,6 @@ devices:
- /dev/nvme2
environment:
WEBUI_PORT: "8080"
homeassistant: 2023.12.0
image: ghcr.io/alexbelgium/qbittorrent-{arch}
ingress: true
init: false
@@ -145,4 +144,4 @@ schema:
slug: qbittorrent
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "5.1.4"
version: 5.1.4

View File

@@ -0,0 +1 @@
../usr/local/sbin/sysctl

View File

@@ -0,0 +1 @@
../local/sbin/sysctl

View File

@@ -2,6 +2,9 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## 12.0.16 (15-02-2026)
- Handle list-based `database` options correctly so SQLite configurations skip MySQL initialization.
## 12.0.15 (18-12-2025)
- Normalize `SERVICE_URL` and `FILE_SERVER_ROOT` values in `conf/seahub_settings.py` based on the add-on configuration to generate valid download links.

View File

@@ -1,4 +1,3 @@
## ⚠ Open Issue : [🐛 [Seafile] 12.0.14 not started (opened 2025-09-15)](https://github.com/alexbelgium/hassio-addons/issues/2104) by [@KoalaMontana](https://github.com/KoalaMontana)
# Home assistant add-on: seafile

View File

@@ -128,5 +128,5 @@ services:
slug: seafile
udev: true
url: https://github.com/alexbelgium/hassio-addons/tree/master/seafile
version: 12.0.15
version: 12.0.16
webui: http://[HOST]:[PORT:8000]

View File

@@ -119,7 +119,14 @@ bashio::log.info "FILE_SERVER_ROOT set to ${FILE_SERVER_ROOT_VALUE}"
bashio::log.info "Defining database"
case $(bashio::config 'database') in
# The option is defined as a list, so grab the first entry when an array is
# provided (Home Assistant stores multi-select options this way). Fallback to
# the raw value to stay compatible with older configurations that used a
# string.
DATABASE_SELECTION=$(bashio::config 'database[0]' 2>/dev/null || true)
DATABASE_SELECTION=${DATABASE_SELECTION:-$(bashio::config 'database')}
case "${DATABASE_SELECTION}" in
# Use sqlite
sqlite)