mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-03-03 18:50:44 +01:00
- when appending unsorted channels during save, they are now set to
"hidden" and "skipped/unselectable" - reference lists: the satellite orbital position is no longer used to match channels. (Samsung J series does not provide that info). - Samsung J series: favorite lists are no longer individually sortable. (The same Pr# is used for all favorite lists). - Samsung J series: deleting channels now physically removes them from the file. (The TV might automatically append them again when it finds them in the DVB data stream). - Samsung J series: editing of channel names is now enabled. - Samsung J series: favorite E is now also available
This commit is contained in:
@@ -1,17 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.IO;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.VDR
|
||||
{
|
||||
class Serializer : SerializerBase
|
||||
{
|
||||
private const string ERR_FileFormat = "File uses an unknown format";
|
||||
|
||||
private readonly ChannelList allChannels = new ChannelList(SignalSource.DvbT | SignalSource.DvbC | SignalSource.DvbS | SignalSource.AnalogC | SignalSource.AnalogT | SignalSource.Tv | SignalSource.Radio, "All");
|
||||
|
||||
#region ctor()
|
||||
@@ -19,7 +13,7 @@ namespace ChanSort.Loader.VDR
|
||||
{
|
||||
DepencencyChecker.AssertVc2010RedistPackageX86Installed();
|
||||
|
||||
this.Features.ChannelNameEdit = false;
|
||||
this.Features.ChannelNameEdit = ChannelNameEditMode.None;
|
||||
this.DataRoot.SortedFavorites = false;
|
||||
//this.DataRoot.SupportedFavorites = new Favorites();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user