summaryrefslogtreecommitdiffstats
path: root/generate.py
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2022-11-08 00:09:59 -0800
committeryum <yum.food.vr@gmail.com>2022-11-08 00:09:59 -0800
commit2efc87a7180ec6e92127d22d1a3eb8c44fd392db (patch)
tree0c8c6ace7d3b3752cdc67ee98bbb43a9ecec18cd /generate.py
parent77c6f366b2f81c60ed67e2fa6dc92df451e4229c (diff)
Update fonts
English, Japanese, Chinese, and Korean should look much better now. French, German, and Spanish look like shit now, because I haven't figured out how to best make Noto Sans stay within its bounding box. * Use Noto Sans for most things * Simplify how we enable unicode blocks & assign fonts to them * Increase string matching window to 300. Works better in real-world test.
Diffstat (limited to 'generate.py')
-rw-r--r--generate.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/generate.py b/generate.py
index 2442dc7..92c2e25 100644
--- a/generate.py
+++ b/generate.py
@@ -16,10 +16,14 @@ state.encoding = osc_ctrl.generateEncoding()
osc_ctrl.clear(client)
-i = 0x3400
+time.sleep(1)
+
+#i = 0xAC00
+#i = 0x3000
+i = 0x0000
line = ""
while True:
- for j in range(0, 256):
+ for j in range(0, 1024):
letter = chr(i)
line += letter
i = i + 1