- experimental support for Grundig and ChangHong atv\_cmdb.bin files (analog antenna and cable TV)

- Reference list dialog further optimized to fit 1920x1080 @150% or 1024x768 @100% screens
- re-imported translation file (to fix incorrect letters in language names like "Русский")
- upgrade to DevExpress 22.1 libraries
This commit is contained in:
Horst Beham
2022-07-03 21:48:12 +02:00
parent 76d88c63cc
commit f522adad0a
47 changed files with 1132 additions and 602 deletions

View File

@@ -562,7 +562,8 @@ namespace ChanSort.Loader.Philips
{
if (part == "")
continue;
buffer.WriteByte((byte)ParseInt(part));
var val = (byte)ParseInt(part);
buffer.WriteByte(val);
}
return Encoding.Unicode.GetString(buffer.GetBuffer(), 0, (int) buffer.Length).TrimEnd('\x0');