From 39228b763157125305a24d07a7968305d0ae25e8 Mon Sep 17 00:00:00 2001 From: jpirnay Date: Fri, 22 May 2026 19:11:20 +0200 Subject: [PATCH] Add reading range --- lib/EpdFont/scripts/fontconvert_sdcard.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/EpdFont/scripts/fontconvert_sdcard.py b/lib/EpdFont/scripts/fontconvert_sdcard.py index e309f786..65557ef9 100644 --- a/lib/EpdFont/scripts/fontconvert_sdcard.py +++ b/lib/EpdFont/scripts/fontconvert_sdcard.py @@ -70,6 +70,15 @@ INTERVAL_PRESETS = { (0x1EA0, 0x1EF9), (0x2000, 0x206F), (0x20A0, 0x20CF), (0x2070, 0x209F), (0x2190, 0x21FF), (0x2200, 0x22FF), (0xFB00, 0xFB06)], + # Greek for physics terms, math operators, geometric shapes, uncommon + # dialogue punctuation, CJK quote marks, miscellaneous symbols (♪♫♬), dingbats. + "reading": [(0x0020, 0x024F), (0x0300, 0x036F), (0x0370, 0x03FF), + (0x0400, 0x04FF), (0x1E00, 0x1EFF), (0x2000, 0x206F), + (0x2070, 0x209F), (0x20A0, 0x20CF), (0x2150, 0x218F), + (0x2190, 0x21FF), (0x2200, 0x22FF), (0x2500, 0x257F), + (0x25A0, 0x25FF), (0x2600, 0x26FF), (0x2700, 0x27BF), + (0x2900, 0x29FF), (0x2E00, 0x2E7F), (0x3000, 0x303F), + (0xFB00, 0xFB06)], }