feat: add Mosaic Graphics support and fix char rendering
Build Linux / Build Linux (push) Successful in 1m29s
Build Windows / Build Windows (push) Successful in 2m53s

- Added Mosaic Picker dialog with visual previews
- Added 'Graphics' mode toggle to UI
- Implemented status bar mode indicator (Text/Graphics)
- Corrected English character mapping for 0x60 to Hyphen (-)
- Verified German and Swedish/Finnish character sets against ETSI spec
This commit is contained in:
2026-01-21 13:30:19 +01:00
parent e06fd2c776
commit 0ebf18ee6e
3 changed files with 141 additions and 12 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ to Unicode characters based on the National Option (3 bits).
ENGLISH = {
0x23: '#', 0x24: '$', 0x40: '@',
0x5B: '[', 0x5C: '\\', 0x5D: ']', 0x5E: '^',
0x5F: '_', 0x60: '`',
0x5F: '_', 0x60: '-',
0x7B: '{', 0x7C: '|', 0x7D: '}', 0x7E: '~'
}