- Philips loaders will show model and file format version under File / File information...

This commit is contained in:
Horst Beham
2021-09-05 18:20:39 +02:00
parent ef5834fac0
commit 39f2c59f94
7 changed files with 63 additions and 5 deletions

View File

@@ -95,6 +95,9 @@ namespace ChanSort.Loader.Philips
{
this.chanLstBin = new ChanLstBin();
this.chanLstBin.Load(this.FileName, msg => this.logMessages.AppendLine(msg));
this.TvModelName = this.chanLstBin.ModelName;
this.FileFormatVersion = $"{chanLstBin.VersionMajor}.{chanLstBin.VersionMinor}";
this.dataFilePaths.Add(this.FileName);
var dir = Path.GetDirectoryName(this.FileName) ?? "";