- upgrade to DX 22.2.4

- added support for Medion Android UHD "senderliste.txt" JSON format
This commit is contained in:
Horst Beham
2023-02-20 09:34:45 +01:00
parent f21cef5b6d
commit 072d9b2502
34 changed files with 777 additions and 479 deletions

View File

@@ -552,6 +552,9 @@ namespace ChanSort.Loader.Philips
if (input == null || !input.StartsWith("0x")) // fallback for unknown input
return input;
// according to https://github.com/PredatH0r/ChanSort/issues/347 Philips seems to not use UTF 16, but instead use locale dependent encoding and
// writing "0xAA 0x00" to the file for an 8 bit code point. At least for the favorite list captions. Congratulations, well done!
var hexParts = input.Split(' ');
var buffer = new MemoryStream();