- reworked UI

- fixed various issues with incorrect selection and program# assignment
This commit is contained in:
hbeham
2013-04-06 01:46:28 +02:00
parent f882df48c1
commit 961f3be305
28 changed files with 3645 additions and 2926 deletions

View File

@@ -113,7 +113,7 @@ namespace ChanSort.Loader.ScmFile
if (DetectModelFromCloneInfoFile(zip)) return;
if (DetectModelFromContentFileLengths(zip)) return;
if (DetectModelFromFileName()) return;
throw new IOException("Unable to determine TV model from file content or name");
throw new FileLoadException("Unable to determine TV model from file content or name");
}
#endregion
@@ -385,7 +385,7 @@ namespace ChanSort.Loader.ScmFile
for (int i = 0; i < count; i++)
{
if (satMapping.MagicMarker != 0x55)
throw new IOException("Unknown SatDataBase.dat format");
throw new FileLoadException("Unknown SatDataBase.dat format");
string location = string.Format("{0}.{1}{2}",
satMapping.Longitude/10, satMapping.Longitude%10, satMapping.IsEast ? "E" : "W");

View File

@@ -4,7 +4,7 @@ namespace ChanSort.Loader.ScmFile
{
public class ScmSerializerPlugin : ISerializerPlugin
{
public string PluginName { get { return "Samsung *.scm Loader"; } }
public string PluginName { get { return "Samsung *.scm"; } }
public string FileFilter { get { return "*.scm"; } }
public SerializerBase CreateSerializer(string inputFile)