From e291e422dc0ccd3b2e5455500a96e709771e7daf Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 18 Dec 2025 20:43:27 +0100 Subject: [PATCH] feature!: update to ui v0.0.2, which removes some icons Signed-off-by: squidfunk --- scripts/prepare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare.py b/scripts/prepare.py index 6a63894..9932e74 100755 --- a/scripts/prepare.py +++ b/scripts/prepare.py @@ -39,7 +39,7 @@ def main() -> int: # Clone UI repository into tmp directory repo_url = "https://github.com/zensical/ui.git" - repo_tag = "v0.0.1" + repo_tag = "v0.0.2" dest_dir = os.path.join("tmp", "ui") if not os.path.exists(dest_dir): subprocess.run(["git", "clone", repo_url, dest_dir], check=True)