mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-05 05:59:03 +01:00
Changes:
- File / "File information" now shows information for all TV models - Disabled "TV-Set" menu items which are not applicable - Fixed DVB-S transponder/frequency information for LG LN and LA61xx series - Fixed deleting channels in Samsung B-series Digital Air/Cable lists - Fixed encryption information in Samsung B-series Digital Air/Cable lists - Fixed loading of reference lists with non-unique channel identifiers - Fixed error when saving LG files for models LD-LK after applying a reference list which contains channels not present in the TLL file
This commit is contained in:
@@ -77,7 +77,6 @@ namespace ChanSort.Loader.LG
|
||||
public TllFileSerializer(string inputFile) : base(inputFile)
|
||||
{
|
||||
this.Features.ChannelNameEdit = true;
|
||||
this.Features.FileInformation = true;
|
||||
this.Features.DeviceSettings = true;
|
||||
this.Features.CleanUpChannelData = true;
|
||||
this.SupportedTvCountryCodes = new List<string>
|
||||
@@ -982,7 +981,7 @@ namespace ChanSort.Loader.LG
|
||||
int slot = 0;
|
||||
foreach (ChannelInfo appChannel in sortedList)
|
||||
{
|
||||
if (appChannel.NewProgramNr <= 0 && removeDeletedActChannels)
|
||||
if (appChannel.RecordIndex < 0 || appChannel.NewProgramNr <= 0 && removeDeletedActChannels)
|
||||
continue;
|
||||
if (appChannel.RecordIndex != slot)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user