mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 19:32:04 +01:00
- added experimental support for Panasonic - fixed Encrypted-flag detection for Samsung Analog and DVB-C/T channels - text editors now only open after holding the mouse button for 0.5sec - new menu item/button for deleting channels from the right list
18 lines
420 B
C#
18 lines
420 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.LG
|
|
{
|
|
public class TllFileSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "LG-Electronics *.tll"; } }
|
|
public string FileFilter { get { return "*.TLL"; } }
|
|
|
|
#region CreateSerializer()
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new TllFileSerializer(inputFile);
|
|
}
|
|
#endregion
|
|
}
|
|
}
|