1.26.2621024 (2026-09-19)
Fixed
-
The guide label shown after an event ends no longer carries a wrong date. The
plugin wrote the label asEnded at {month}/{day} {endtime}, but Dispatcharr
fills the month and day with the date the event STARTED and has no placeholder
for the date it ended. An event starting at 7pm and running five hours was
labelledEnded at 9/19 12 AMwhen it ended at midnight on 9/20. The label is
nowEnded at <end-time> <zone>: <title>, with no date. TheUpcoming atlabel
keeps its date, which is correct because it is shown before the event starts.
The managed dummy EPG source is rewritten on the next applied run. -
Regex: Mark Channel as Inactive now compiles the pattern exactly as typed,
the same way the Ignore and Force Visible fields and Validate Configuration
already did. It used to pass the pattern through an escape-decoding step first,
which turned the word boundary\binto a backspace character, so a pattern
such as\bCANCELLED\bnever matched any channel, and a pattern containing a
non-ASCII letter could not match that letter. A pattern written with doubled
backslashes to work around this, such as\\d, now means a literal backslash
and needs to be written with single backslashes, as in the other two fields.