Releases: linuxserver/docker-tvheadend
9ac57a0c-ls226
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
bouquet: fix overzealous channel removals in merged multi-network setup
dd82541c-ls225
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
HTSP: Expose DVR configuration id in 'dvrEntryAdd', 'dvrEntryUpdate', 'autorecEntryAdd', 'autorecEntryUpdate', 'timerecEntryAdd', 'timerecEntryUpdate'.
facbd4e4-ls224
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
Fix FTBFS introduced by 76d8fc8bc5455322558c764c84755ebbba254ad5
Older versions of GCC don't like declaring a variable in the middle
of a switch/case and will fail with "error: a label can only be
part of a statement and a declaration is not a statement".
078a822c-ls223
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
Replace deprecated channels/channel_layout
b774bdd2-ls222
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
intl: Translate intl/js/tvheadend.js.pot in en_US
100% translated source file: 'intl/js/tvheadend.js.pot'
on 'en_US'.
1dc8ffe7-ls221
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
Rework fullscreen request method detection
457c02d3-ls220
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
Add dependency for recent Fedora versions
d2e41b55-ls219
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
Remove tvheadend user on purge
This fixes #1722 on my test system.
128d6861-ls218
LinuxServer Changes:
Rebase to Alpine 3.20.
tvheadend Changes:
Replace deprecated interlaced_frame, top_field_first and key_frame
e855f62e-ls217
LinuxServer Changes:
Rebase to Alpine 3.19.
tvheadend Changes:
Use safer htsmsg_add_str2 when copying de->de_directory
de->de_directory may be null. htsmsg_add_str passes str unchecked to underlying strlen function. __strlen_avx2 will segfault if str is null.
htsmsg_add_str2 checks the value of args before passing them to htsmsg_add_str, which should prevent this.
Fixes #1712