mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-18 14:51:50 +02:00
Compare commits
11 Commits
b699310471
...
0264df6bec
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0264df6bec | ||
|
|
598b2b5b1a | ||
|
|
402563eee3 | ||
|
|
430d4f36dd | ||
|
|
d415125e14 | ||
|
|
96c0cba649 | ||
|
|
cb733396c9 | ||
|
|
6cd9dec8ad | ||
|
|
9768083c6b | ||
|
|
44ebe0e22f | ||
|
|
8ce91f7e3e |
@@ -234,7 +234,7 @@ cp "$ENV_FILE" "$ETC_ENV_FILE"
|
||||
################################################################################
|
||||
# Inject into scripts and shells (best-effort)
|
||||
################################################################################
|
||||
for f in /etc/services.d/*/run /etc/cont-init.d/*.sh /entrypoint.sh /etc/bash.bashrc "${GLOBAL_VAR_FILES:-}"; do
|
||||
for f in /etc/services.d/*/run /etc/s6-overlay/s6-rc.d/*/run /etc/cont-init.d/*.sh /entrypoint.sh /etc/bash.bashrc "${GLOBAL_VAR_FILES:-}"; do
|
||||
[[ -f "$f" ]] && inject_block "$f"
|
||||
done
|
||||
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
## 2.8.2 (07-04-2026)
|
||||
- Minor bugs fixed
|
||||
# Changelog
|
||||
|
||||
## 2.8.2
|
||||
|
||||
- Update to upstream BentoPDF v2.8.2
|
||||
|
||||
## 2.5.0
|
||||
|
||||
- Initial release of BentoPDF Home Assistant add-on
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Global build args — must be declared before the first FROM to be usable in FROM instructions
|
||||
ARG BUILD_FROM=ghcr.io/home-assistant/amd64-base:3.23
|
||||
ARG BUILD_VERSION=2.5.0
|
||||
ARG BUILD_VERSION=2.8.2
|
||||
|
||||
# Stage 1: Download and extract the BentoPDF dist release (includes bundled WASM)
|
||||
FROM alpine:3.21 AS dist
|
||||
|
||||
@@ -2,7 +2,7 @@ name: "BentoPDF"
|
||||
slug: bentopdf
|
||||
image: ghcr.io/alexbelgium/bentopdf-{arch}
|
||||
description: "Privacy-first PDF toolkit. 50+ tools, all processing client-side in the browser. Files never leave your device."
|
||||
version: "2.5.0"
|
||||
version: "2.8.2"
|
||||
url: "https://github.com/alexbelgium/hassio-addons/tree/master/bentopdf"
|
||||
arch:
|
||||
- amd64
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
|
||||
## 0.6.26-2 (2026-04-06)
|
||||
- Fix: Install calibre (calibredb) at build time to fix 500 error when downloading books
|
||||
|
||||
## 0.6.26 (2026-02-07)
|
||||
- Update to latest version from linuxserver/docker-calibre-web (changelog : https://github.com/linuxserver/docker-calibre-web/releases)
|
||||
- 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.
|
||||
|
||||
@@ -35,6 +35,12 @@ RUN \
|
||||
&& echo '#!/bin/sh' > /usr/bin/xdg-desktop-menu && chmod +x /usr/bin/xdg-desktop-menu \
|
||||
&& echo '#!/bin/sh' > /usr/bin/xdg-mime && chmod +x /usr/bin/xdg-mime
|
||||
|
||||
# Install calibre binaries (provides calibredb required for book downloads)
|
||||
# hadolint ignore=DL4006
|
||||
RUN \
|
||||
wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sh /dev/stdin install_dir=/opt/calibre
|
||||
ENV PATH="/opt/calibre:${PATH}"
|
||||
|
||||
# Global LSIO modifications
|
||||
COPY ha_lsio.sh /ha_lsio.sh
|
||||
ARG CONFIGLOCATION="/config"
|
||||
|
||||
@@ -116,5 +116,5 @@ schema:
|
||||
slug: calibre-web
|
||||
udev: true
|
||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/calibre_web
|
||||
version: "0.6.26"
|
||||
version: "0.6.26-2"
|
||||
video: true
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
|
||||
## v0.15.2-2 (2026-04-06)
|
||||
- Fix environment variables not being passed into the container (e.g. VPN_AUTO_PORT_FORWARD, VPN_ENABLED)
|
||||
- Disable VPN port forwarder service when no VPN provider is configured
|
||||
|
||||
## v0.15.2 (2026-03-14)
|
||||
- Update to latest version from Unpackerr/unpackerr (changelog : https://github.com/Unpackerr/unpackerr/releases)
|
||||
|
||||
|
||||
@@ -100,4 +100,4 @@ schema:
|
||||
slug: unpackerr
|
||||
udev: true
|
||||
url: https://github.com/alexbelgium/hassio-addons
|
||||
version: "v0.15.2"
|
||||
version: "v0.15.2-2"
|
||||
|
||||
@@ -23,5 +23,12 @@ case "$VPN_PROVIDER" in
|
||||
sed -i "1a sleep infinity" /etc/s6*/s6*/service-privoxy/run
|
||||
sed -i "1a sleep infinity" /etc/s6*/s6*/service-proton/run
|
||||
sed -i "1a sleep infinity" /etc/s6*/s6*/service-pia/run
|
||||
sed -i "1a sleep infinity" /etc/s6*/s6*/service-forwarder/run
|
||||
;;
|
||||
esac
|
||||
|
||||
# Disable port forwarder when VPN_AUTO_PORT_FORWARD is explicitly false
|
||||
VPN_AUTO_PORT_FORWARD="${VPN_AUTO_PORT_FORWARD:-}"
|
||||
if [ "${VPN_AUTO_PORT_FORWARD,,}" = "false" ]; then
|
||||
sed -i "1a sleep infinity" /etc/s6*/s6*/service-forwarder/run 2>/dev/null || true
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user