From 308bf2765b57d3af0b087072f40dfd9e85bce32f Mon Sep 17 00:00:00 2001 From: cary-rowen Date: Sun, 1 Dec 2024 06:48:37 +0800 Subject: [PATCH] Fix: Use correct update URL and bump version to 2024.2 --- bookworm/app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bookworm/app.py b/bookworm/app.py index 518d93f8..415f13d3 100644 --- a/bookworm/app.py +++ b/bookworm/app.py @@ -9,11 +9,11 @@ description = "The Universally accessible document reader" author = "Blind Pandas" author_email = "info@blindpandas.com" -version = "2024.1" -version_ex = "2024.1.0.11" +version = "2024.2" +version_ex = "2024.2.0.12" url = "https://github.com/blindpandas/bookworm" website = "https://github.com/blindpandas/bookworm" -update_url = "https://github.com/blindpandas/bookworm/blob/main/update_info.json" +update_url = "https://raw.githubusercontent.com/blindpandas/bookworm/main/update_info.json" copyright = f"Copyright (c) 2024 {author} and {display_name} contributors." exit_code = 0 is_frozen = getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS")