- rewrote m3u loader to handle arbitrary lines in the file and preserve encoding and line endings

- support for Hisense channel.db format of the H50B7700UW, which has a different schema in the fav_x tables
- added spanish translation to distribution packages
This commit is contained in:
Horst Beham
2020-01-02 20:33:40 +01:00
parent 19499d0d57
commit f04cb5e903
8 changed files with 330 additions and 153 deletions

View File

@@ -0,0 +1,14 @@
using ChanSort.Api;
namespace ChanSort.Loader.Hisense
{
internal class Channel : ChannelInfo
{
public int ChannelId;
public int NwMask;
public Channel(SignalSource ssource, long id, int prNr, string name): base(ssource, id, prNr, name)
{
}
}
}