add global search

This commit is contained in:
naielv
2025-10-02 22:45:41 +02:00
parent f46ec17c03
commit 617711fb1a
6 changed files with 517 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ shutil.copytree("assets","dist", dirs_exist_ok=True)
def replace_handles(string):
string = string.replace("%%PREFETCH%%", PREFETCH)
string = string.replace("%%VERSIONCO%%", VERSIONCO)
string = string.replace("%%TITLE%%", sys.argv[1])
string = string.replace("%%TITLE%%", "TeleSec")
string = string.replace("%%ASSETSJSON%%", json.dumps(ASSETS, ensure_ascii=False))
return string