mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 19:32:04 +01:00
- 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
17 lines
379 B
C#
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);
|
|
}
|
|
}
|
|
}
|