Initial commit: 2125_GCE project

This commit is contained in:
GlyphRunner System
2026-07-09 12:54:44 -04:00
parent c3a826b65c
commit ae13f78c22
299 changed files with 124289 additions and 1031 deletions
Regular → Executable
+6 -1
View File
@@ -45,7 +45,12 @@ def load_all_supercharged(path: Optional[str] = None) -> None:
# Resolve path
if path is None:
path = "/mnt/d/users/dave/Downloads/LEDONOVA/LedoGlyph600.json"
# Try local path first, then fallback
local_path = Path(__file__).parent / "supercharged_glyphs.json"
if local_path.exists():
path = str(local_path)
else:
path = "/mnt/d/users/dave/Downloads/LEDONOVA/LedoGlyph600.json"
filepath = Path(path)
if not filepath.exists():