From 948fcfda9acfc4bed67186de948a1177dcd098a9 Mon Sep 17 00:00:00 2001 From: Cyberarm Date: Tue, 6 Jan 2026 23:26:43 -0600 Subject: [PATCH] Use correct repo url for self-updater (doesn't work yet, but its a step) --- lib/states/boot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/states/boot.rb b/lib/states/boot.rb index cdb8b03..92cbca4 100644 --- a/lib/states/boot.rb +++ b/lib/states/boot.rb @@ -201,7 +201,7 @@ class W3DHub def launcher_updater @status_label.value = "Checking for Launcher updates..." # I18n.t(:"boot.checking_for_updates") - Api.on_thread(:fetch, "https://api.github.com/repos/Inq8/CAmod/releases/latest") do |response| + Api.on_thread(:fetch, "https://api.github.com/repos/cyberarm/w3d_hub_linux_launcher/releases/latest") do |response| if response.status == 200 hash = JSON.parse(response.body, symbolize_names: true) available_version = hash[:tag_name].downcase.sub("v", "")