This commit is contained in:
Alexandre
2025-08-01 21:59:19 +02:00
194 changed files with 460 additions and 349 deletions

View File

@@ -1,3 +1,9 @@
## 2.42.1-3 (01-08-2025)
- Minor bugs fixed
## 2.42.1 (01-08-2025)
- Update to latest version from filebrowser/filebrowser (changelog : https://github.com/filebrowser/filebrowser/releases)
## 2.42.0-2 (28-07-2025)
- Minor bugs fixed
## 2.42.0 (28-07-2025)

View File

@@ -61,13 +61,15 @@ RUN chmod 744 /ha_autoapps.sh && /ha_autoapps.sh "$PACKAGES" && rm /ha_autoapps.
################
# Add entrypoint
ENV S6_STAGE2_HOOK=/ha_entrypoint.sh
# ENV S6_STAGE2_HOOK=/ha_entrypoint.sh
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint.sh" "/ha_entrypoint.sh"
# Entrypoint modifications
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_entrypoint_modif.sh" "/ha_entrypoint_modif.sh"
RUN chmod 777 /ha_entrypoint.sh /ha_entrypoint_modif.sh && /ha_entrypoint_modif.sh && rm /ha_entrypoint_modif.sh
RUN sed -i "s|/command/with-contenv|/usr/bin/env|g" "/ha_entrypoint.sh"
VOLUME [ "/data" ]
WORKDIR /

View File

@@ -129,5 +129,5 @@
"slug": "filebrowser",
"udev": true,
"url": "https://github.com/alexbelgium/hassio-addons",
"version": "2.42.0-2"
"version": "2.42.1-3"
}

View File

@@ -66,6 +66,12 @@ mkdir -p /var/log/nginx && touch /var/log/nginx/error.log
NOAUTH=""
# Prevent conflicts
for folders in /etc/services.d /etc/s6-overlay; do
[[ -d "$folders" ]] && rm -r "$folders"
fi
# Disable authentification
if bashio::config.true 'NoAuth'; then
if ! bashio::fs.file_exists "/data/noauth"; then
rm /data/auth &> /dev/null || true

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -1,10 +1,10 @@
{
"github_beta": "true",
"last_update": "18-07-2025",
"last_update": "01-08-2025",
"paused": false,
"repository": "alexbelgium/hassio-addons",
"slug": "filebrowser",
"source": "github",
"upstream_repo": "filebrowser/filebrowser",
"upstream_version": "2.41.0"
"upstream_version": "2.42.1"
}