From e4ee39d92ca526894e6165dd39dd8b506eb9a6c5 Mon Sep 17 00:00:00 2001 From: nullishamy Date: Mon, 20 May 2024 01:54:52 +0100 Subject: [PATCH] fix: use the latest release for the install script --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 7363514d..7f33b197 100644 --- a/install.py +++ b/install.py @@ -75,7 +75,7 @@ def parse_args(): def build_release_url(ctx: InstallContext) -> str: repo_root = "https://github.com/catppuccin/gtk/releases/download" - release = "v1.0.0-alpha" + release = "v1.0.0-rc1" zip_name = f"catppuccin-{ctx.flavor}-{ctx.accent}-standard+default.zip" return f"{repo_root}/{release}/{zip_name}"