- fixed 200MHz offset for Samsung DVB-C channels

- added support for Sony channel lists (read-only at the moment)
- added option to disable check for updates
This commit is contained in:
hbeham
2019-07-14 22:54:46 +02:00
parent d10845a701
commit daeb9ffb1b
21 changed files with 864 additions and 50 deletions

View File

@@ -0,0 +1,16 @@
using ChanSort.Api;
namespace ChanSort.Loader.Sony
{
public class SerializerPlugin : ISerializerPlugin
{
public string DllName { get; set; }
public string PluginName => "Sony sdb.xml";
public string FileFilter => "sdb*.xml";
public SerializerBase CreateSerializer(string inputFile)
{
return new Serializer(inputFile);
}
}
}