mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-20 07:41:48 +02:00
Compare commits
7 Commits
6ccf9e701a
...
f6872bb37f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6872bb37f | ||
|
|
4283f1dbed | ||
|
|
9236d0d85c | ||
|
|
b20ad6a1ba | ||
|
|
8c149a55d7 | ||
|
|
1d21c8b172 | ||
|
|
242d72a115 |
@@ -1,3 +1,6 @@
|
||||
## 2026.02.25-2 (25-02-2026)
|
||||
- Minor bugs fixed
|
||||
## 2026.02.25 (25-02-2026)
|
||||
- Fix FLAC for birdweather
|
||||
- Implement max species to save disk space
|
||||
- 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.
|
||||
|
||||
@@ -118,5 +118,5 @@ tmpfs: true
|
||||
udev: true
|
||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/battybirdnet-pi
|
||||
usb: true
|
||||
version: 2026.02.25
|
||||
version: "2026.02.25-2"
|
||||
video: true
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
|
||||
## 4.0.16.2946-3 (2026-02-25)
|
||||
- Symlink system ffprobe to /app/sonarr/bin/ where Sonarr expects it (fixes https://github.com/alexbelgium/hassio-addons/issues/2451)
|
||||
|
||||
## 4.0.16.2946-2 (2026-02-06)
|
||||
- Add ffmpeg to provide ffprobe for runtime detection (fixes https://github.com/alexbelgium/hassio-addons/issues/2451)
|
||||
|
||||
|
||||
@@ -110,4 +110,4 @@ schema:
|
||||
slug: sonarr_nas
|
||||
udev: true
|
||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/sonarr
|
||||
version: "4.0.16.2946-2"
|
||||
version: "4.0.16.2946-3"
|
||||
|
||||
@@ -25,3 +25,11 @@ fi
|
||||
if [ -d /config/addons_config ]; then
|
||||
rm -rf /config/addons_config
|
||||
fi
|
||||
|
||||
# Sonarr v4 looks for ffprobe in its own binary directory (/app/sonarr/bin/)
|
||||
# via GlobalFFOptions.Configure(options => options.BinaryFolder = AppDomain.CurrentDomain.BaseDirectory)
|
||||
# Symlink the system-installed ffprobe there so Sonarr can find a working copy
|
||||
if [ -f /usr/bin/ffprobe ] && [ -d /app/sonarr/bin ]; then
|
||||
ln -sf /usr/bin/ffprobe /app/sonarr/bin/ffprobe
|
||||
echo "Symlinked /usr/bin/ffprobe to /app/sonarr/bin/ffprobe"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user