mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 19:02:05 +01:00
file format - show error message when trying to open a .zip file that doen't contain the expected files of a Samsung J series or Toshiba .zip channel list - show error message when trying to open a broken .zip file, which is most likely caused by exporting to a USB stick formatted with NTFS - allow changing the "crypt" flag for Samsung .scm lists - iterating through loaders supporting a file extension till one can read the file
16 lines
355 B
C#
16 lines
355 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.VDR
|
|
{
|
|
public class SerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "Linux VDR"; } }
|
|
public string FileFilter { get { return "*.conf"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new Serializer(inputFile);
|
|
}
|
|
}
|
|
}
|