Include all files of default variant for glyph list update (#3368)

pull/3371/head dev-build-kaalleen-json-edit
Kaalleen 2024-12-26 05:44:41 +01:00 zatwierdzone przez GitHub
rodzic 72b403bd50
commit 5ce92a4621
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 26 dodań i 13 usunięć

Wyświetl plik

@ -5,10 +5,11 @@
import json
import os
import sys
from inkex import errormsg
from ..i18n import _
from ..lettering.font_info import FontFileInfo
from ..lettering import Font
from .base import InkstitchExtension
@ -19,24 +20,37 @@ class LetteringUpdateJsonGlyphlist(InkstitchExtension):
def __init__(self, *args, **kwargs):
InkstitchExtension.__init__(self, *args, **kwargs)
self.arg_parser.add_argument("--notebook")
self.arg_parser.add_argument("-f", "--font-file", type=str, default="", dest="font_file")
self.arg_parser.add_argument("-j", "--json-file", type=str, default="", dest="json_file")
self.arg_parser.add_argument("-d", "--font-dir", type=str, default="", dest="font_dir")
def effect(self):
# file paths
font_file = self.options.font_file
json_file = self.options.json_file
if not os.path.isfile(font_file) or not os.path.isfile(json_file):
print(_("Please verify file locations."), file=sys.stderr)
font_dir = self.options.font_dir
if not os.path.isdir(font_dir):
errormsg(_("Please verify font folder path."))
return
json_file = self._get_json_file(font_dir)
# glyphs
font = Font(font_dir)
font._load_variants()
glyphs = font.get_variant(font.default_variant).glyphs
glyphs = list(glyphs.keys())
if not glyphs:
return
glyphs = FontFileInfo(font_file).glyph_list()
# read json file
with open(json_file, 'r') as font_data:
data = json.load(font_data)
data['glyphs'] = glyphs
# write data to font.json into the same directory as the font file
# write data to the.json file
with open(json_file, 'w', encoding="utf8") as font_data:
json.dump(data, font_data, indent=4, ensure_ascii=False)
def _get_json_file(self, font_dir):
json_file = os.path.join(font_dir, "font.json")
if not os.path.isfile(json_file):
errormsg(_("Could not find json file. Please create one with Extensions > Ink/Stitch > Font Management > Generate JSON..."))
return json_file

Wyświetl plik

@ -6,8 +6,7 @@
<param name="notebook" type="notebook">
<page name="options" gui-text="Options">
<param type="path" name="font-file" gui-text="SVG Font File" mode="file" filetypes="svg"/>
<param type="path" name="json-file" gui-text="JSON File" mode="file" filetypes="json"/>
<param type="path" name="font-dir" gui-text="Font Folder" mode="folder"/>
</page>
<page name="info" gui-text="Help">
<label appearance="header">Updates the glyphlist in the json file.</label>