mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 19:02:05 +01:00
- added a "DllName" property to all loaders (set automatically in the main app) for improved error output
- added a "View" class that lets loaders show a dialog prompt without adding direct references to DX assemblies
- Samsung SCM loader now prompts for TV series if it can't be auto-detected uniquely
- added fixes for Samsung .zip format from 288adf7bd2
- added popup to open download page for VC2010 x86 redist if not installed (needed to open SQLite files)
- added hack to work around a problem in the SharpZipLib when Windows returns an invalid code page
20 lines
470 B
C#
20 lines
470 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.LG
|
|
{
|
|
public class TllFileSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string DllName { get; set; }
|
|
|
|
public string PluginName { get { return "LG model specific (xx*.tll)"; } }
|
|
public string FileFilter { get { return "xx*.TLL"; } }
|
|
|
|
#region CreateSerializer()
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new TllFileSerializer(inputFile);
|
|
}
|
|
#endregion
|
|
}
|
|
}
|