From 65a019da16238a03d5ae4e8bdb35de5ae26a6a05 Mon Sep 17 00:00:00 2001 From: Martin Donath Date: Sun, 13 Sep 2026 18:55:24 +0200 Subject: [PATCH] fix: update ui to v0.0.30 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 8841acb..ffcf427 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.29" + repo_tag = "v0.0.30" dest_dir = os.path.join("tmp", "ui") if not os.path.exists(dest_dir): subprocess.run(["git", "clone", repo_url, dest_dir], check=True)