- FIX: Resizing a column caused an exception

- FIX: Deleting satellite channels from an SCM file did not work correctly
- Improved SCM file format detection
- Samsung E/F-Series: channels in the favorite lists now use their prog#  instead of all being put at #1
- fixed LG unit tests
- fixed Samsung tests
This commit is contained in:
hbeham
2013-06-23 23:22:09 +02:00
parent 42396aff6e
commit 6d3826cd2e
36 changed files with 5569 additions and 5539 deletions

View File

@@ -15,7 +15,7 @@ namespace ChanSort.Loader.Samsung
public readonly int dvbtFineTuneLength;
public readonly Favorites supportedFavorites;
public readonly int ptcLength;
public readonly int favoriteNotSetValue;
public readonly bool SortedFavorites;
public ModelConstants(IniFile.Section iniSection)
{
@@ -34,7 +34,7 @@ namespace ChanSort.Loader.Samsung
for (int i = 0; i < numFavorites; i++)
mask = (mask << 1) | 1;
this.supportedFavorites = (Favorites)mask;
this.favoriteNotSetValue = iniSection.GetInt("FavoriteNotSet");
this.SortedFavorites = iniSection.GetInt("SortedFavorites") != 0;
}
}
}