mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-17 21:02:04 +01:00
- prevent Panasonic channel list from having gaps in the numbers - support for mixed channel lists (analog/digital, air/cable/sat/ip, ...) - Sat-IP support for Panasonic - fixed GlobalClone loader to read satellite info and include it in the channel UID - detect "xx*.xml" files as GlobalClone (from hospitality TVs) - updated warning about LG webOS firmware issues (supposedly working with newest firmware) - upgrade to latest DevExpress library - show warning for broken Samsung files where all bytes are 0
16 lines
385 B
C#
16 lines
385 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
{
|
|
public class GcSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "LG GlobalClone"; } }
|
|
public string FileFilter { get { return "*Clone*.tll;xx*.xml"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new GcSerializer(inputFile);
|
|
}
|
|
}
|
|
}
|