fontgen: use patch file for jetbrains 0 fix

This commit is contained in:
Yehoshua Pesach Wallach 2022-04-19 17:56:06 +03:00 committed by JF
parent 451d755e3d
commit 77645b20b2
3 changed files with 7 additions and 31 deletions

View File

@ -1,30 +0,0 @@
#!/usr/bin/env python
import sys
with open('jetbrains_mono_bold_20.c', 'r') as fd:
src = fd.read()
zero_area = src.find('U+0030 "0"')
zero_data_start = src[zero_area:].find('\n') + zero_area + 1
zero_data_end = src[zero_data_start:].find('\n\n')
curr = src[zero_data_start:zero_data_start+zero_data_end]
OLD=""" 0x3f, 0x1f, 0xef, 0x3f, 0x87, 0xe1, 0xf8, 0x7f,
0xdf, 0xf7, 0xe1, 0xf8, 0x7e, 0x1f, 0xcf, 0x7f,
0x8f, 0xc0,"""
NEW=""" 0x3f, 0x1f, 0xef, 0x3f, 0x87, 0xe1, 0xf8, 0x7e,
0xdf, 0xb7, 0xe1, 0xf8, 0x7e, 0x1f, 0xcf, 0x7f,
0x8f, 0xc0,"""
if curr != OLD:
if curr == NEW:
print('Already patched')
sys.exit()
sys.exit('Target differers from expected data')
with open('jetbrains_mono_bold_20.c', 'r+') as fd:
fd.seek(zero_data_start) #NOTE: since they are both the same size, this is allowed. Otherwise more editing needs to happen.
fd.write(NEW)

View File

@ -13,7 +13,7 @@
],
"bpp": 1,
"size": 20,
"patches": ["./fix_jetbrains_mono_bold_20_zero.py"],
"patches": [["patch", "jetbrains_mono_bold_20.c", "jetbrains_mono_bold_20.c_zero.patch"]],
"features": {
"hebrew": [
{

View File

@ -0,0 +1,6 @@
91,92c91,92
< 0x3f, 0x1f, 0xef, 0x3f, 0x87, 0xe1, 0xf8, 0x7f,
< 0xdf, 0xf7, 0xe1, 0xf8, 0x7e, 0x1f, 0xcf, 0x7f,
---
> 0x3f, 0x1f, 0xef, 0x3f, 0x87, 0xe1, 0xf8, 0x7e,
> 0xdf, 0xb7, 0xe1, 0xf8, 0x7e, 0x1f, 0xcf, 0x7f,