v3.1.3
- Fixed xtream codes series info duplicate fields problem.
- Fixed series info container_extension problem.
- Mapper script can have blocks now.
For example, you want to write aif then elseblock
# Maybe there is no station
station = @Caption ~ "(ABC)"
match {
station => {
# if block
# station exists
}
# optional any match as else block
_ => {
# else block
# station does not exists
}
}
- New BuiltIn Mapper function
first. When you use Regular expressions it could be that your match contains multiple results.
The builtin functionfirstreturns the first match.