patch system: use HTTPS for raw.klud.top

This commit is contained in:
god
2026-07-04 10:48:21 +08:00
parent 4a3637482c
commit 08a527195f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ signal patch_applied
signal store_update_required(store_url: String) signal store_update_required(store_url: String)
# Configuration - Update these URLs for your game # Configuration - Update these URLs for your game
const VERSION_MANIFEST_URL := "http://raw.klud.top/danchie/tekton/version.json" const VERSION_MANIFEST_URL := "https://raw.klud.top/danchie/tekton/version.json"
const ANDROID_STORE_URL := "https://play.google.com/store/apps/details?id=com.yourcompany.tekton" const ANDROID_STORE_URL := "https://play.google.com/store/apps/details?id=com.yourcompany.tekton"
const IOS_STORE_URL := "https://apps.apple.com/app/tekton/id123456789" const IOS_STORE_URL := "https://apps.apple.com/app/tekton/id123456789"
+1 -1
View File
@@ -26,7 +26,7 @@ PROJECT_GODOT = "project.godot"
CHANGELOG_DRAFT = "CHANGELOG_DRAFT.md" CHANGELOG_DRAFT = "CHANGELOG_DRAFT.md"
VERSION_JSON = "assets/data/version.json" VERSION_JSON = "assets/data/version.json"
EXPORT_PRESETS = "export_presets.cfg" EXPORT_PRESETS = "export_presets.cfg"
MANIFEST_URL = "http://raw.klud.top/danchie/tekton/patch.pck" MANIFEST_URL = "https://raw.klud.top/danchie/tekton/patch.pck"
# ─── Parse command line arguments ───────────────────────────────────────────── # ─── Parse command line arguments ─────────────────────────────────────────────
parser = argparse.ArgumentParser(description="Generate version.json and update version numbers") parser = argparse.ArgumentParser(description="Generate version.json and update version numbers")