- Philips: lists with a chanLst.bin file show information about file format version and TV model under File / Information

- Philips ChannelMap_45: fixed handling of favorite lists (allow up to 8 lists, empty ones get removed automatically)
- Philips ChannelMap_45: no longer prompting to reorder channels sequentially (to close gaps).
  (This feature caused DVB-C/T list to only contain odd numbers and DVB-S to contain only even numbers, when both exist)
- Philips ChannelMap_45: added display for service type (TV/radio), encryption, sat frequency polarity
- Philips ChannelMap_45: fixed display of DVB-C/T frequency
- Philips Repair\chanLst.bin (1.x): fixed sat frequency display for transponders with vertical polarity
This commit is contained in:
Horst Beham
2021-02-08 16:57:43 +01:00
parent cec36b4f37
commit 87f3f80b23
8 changed files with 197 additions and 64 deletions

View File

@@ -158,7 +158,7 @@ namespace ChanSort.Api
{
if (this.uid == null)
{
if ((this.SignalSource & SignalSource.MaskAnalogDigital) == SignalSource.Analog)
if ((this.SignalSource & SignalSource.Analog) != 0)
this.uid = "A-0-" + (int) (this.FreqInMhz*20) + "-0";
else
{

View File

@@ -112,7 +112,10 @@ namespace ChanSort.Api
foreach (var list in this.ChannelLists)
{
if (list.IsMixedSourceFavoritesList)
{
loader.Features.SortedFavorites = true; // all mixed source favorite lists must support ordering
continue;
}
// make sure that deleted channels have OldProgramNr = -1
bool hasPolarity = false;