mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 19:32:04 +01:00
- added feature to allow specific channel lists to define which data columns should be visible. This can be customized by individual file format loaders. - upgraded to DevExpress 15.1.6
27 lines
642 B
C#
27 lines
642 B
C#
//#define HISENSE_ENABLED
|
|
|
|
/*
|
|
Support for the Hisense file format (Sep 2015) is currently disabled due to the risk of damaging the TV when
|
|
users import files in an older/newer format than the currently installed firmware expects.
|
|
*/
|
|
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Hisense
|
|
{
|
|
#if HISENSE_ENABLED
|
|
public class HisSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName => "Hisense HIS_*.bin";
|
|
public string FileFilter => "HIS_SVL.BIN";
|
|
|
|
#region CreateSerializer()
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new HisSerializer(inputFile);
|
|
}
|
|
#endregion
|
|
}
|
|
#endif
|
|
}
|