- fixed "Export to Excel" (copies the list as tab-separated text into clipboard)

- included latest translation to Polish (thanks to J.D.)
- reorganized File menu and tool bar
- allow renaming channels in SatcoDX channel lists (\*.sdx)
- improved support for Panasonic LS 500 / LX 700 series
This commit is contained in:
Horst Beham
2022-11-22 21:36:01 +01:00
parent 25486ce5a0
commit 954b44ed7a
16 changed files with 529 additions and 310 deletions

View File

@@ -366,8 +366,10 @@ class Serializer : SerializerBase
{
var a = e.Attributes;
var listId = int.Parse(a["FavoriteId"].InnerText);
var serviceId = int.Parse(a["ServiceId"].InnerText);
var lcn = int.Parse(a["Lcn"].InnerText);
if (!int.TryParse(a["ServiceId"].InnerText, out var serviceId))
return;
if (!int.TryParse(a["Lcn"].InnerText, out var lcn))
return;
if (!this.channelsById.TryGetValue(serviceId, out var c))
return;