Files
ChanSort/source/ChanSort.Loader.PhilipsBin/SerializerPlugin.cs
Horst Beham 2c61c28b5f - Philips: TV rejected modified lists because checksums inside chanLst.bin were not updated. This is now fixed.
- LG WebOS 5: fixed handling for deleted satellite radio channels (some TVs expect majorNumber 0, others 16384)
- "Open File Dialog" now works again when double-clicking on a shortcut to a directory (.lnk file).
- DevExpress library update
2020-11-16 20:43:56 +01:00

17 lines
379 B
C#

using ChanSort.Api;
namespace ChanSort.Loader.PhilipsBin
{
public class SerializerPlugin : ISerializerPlugin
{
public string DllName { get; set; }
public string PluginName => "Philips .bin/.dat";
public string FileFilter => "*.bin;*.dat";
public SerializerBase CreateSerializer(string inputFile)
{
return new Serializer(inputFile);
}
}
}