diff --git a/src/font_manager.py b/src/font_manager.py index d276bb572..df3933638 100644 --- a/src/font_manager.py +++ b/src/font_manager.py @@ -63,8 +63,10 @@ def __init__(self, config: Dict[str, Any]): self.common_fonts = { "press_start": "assets/fonts/PressStart2P-Regular.ttf", "four_by_six": "assets/fonts/4x6-font.ttf", - "five_by_seven": "assets/fonts/5x7.bdf", - "cozette_bdf": "assets/fonts/cozette.bdf" + "five_by_seven": "assets/fonts/5x7.bdf" + # Note: cozette_bdf removed - font file not available + # To re-enable: download cozette.bdf from https://github.com/the-moonwitch/Cozette + # and add: "cozette_bdf": "assets/fonts/cozette.bdf" } # Size tokens for convenience diff --git a/web_interface/templates/v3/partials/fonts.html b/web_interface/templates/v3/partials/fonts.html index bae50438c..4f8f18e1d 100644 --- a/web_interface/templates/v3/partials/fonts.html +++ b/web_interface/templates/v3/partials/fonts.html @@ -114,7 +114,6 @@

Element Font Overrides

- @@ -166,7 +165,6 @@

Font Preview

@@ -663,7 +661,6 @@

Font Preview

const names = { 'press_start': 'Press Start 2P', 'four_by_six': '4x6 Font', - 'cozette_bdf': 'Cozette BDF', 'matrix_light_6': 'Matrix Light 6' }; return names[fontKey] || fontKey;