From 72f24bf4826076e5763c599eaad9fe5b2740dcd7 Mon Sep 17 00:00:00 2001 From: Martin Donath Date: Thu, 30 Jul 2026 12:00:03 +0200 Subject: [PATCH] feature: update ui to v0.0.23 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 7ee1fd6..ddab441 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.22" + repo_tag = "v0.0.23" dest_dir = os.path.join("tmp", "ui") if not os.path.exists(dest_dir): subprocess.run(["git", "clone", repo_url, dest_dir], check=True)