From 1e13905885b4b0b73d8227a9e03aac4cba9714ef Mon Sep 17 00:00:00 2001 From: futile Date: Mon, 3 Nov 2025 07:13:00 +0000 Subject: [PATCH] update codebase for github --- src/gui/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/app.rs b/src/gui/app.rs index e8dd975..2d57f34 100644 --- a/src/gui/app.rs +++ b/src/gui/app.rs @@ -227,7 +227,7 @@ impl App { ui.label("with "); ui.scope(|ui| { ui.style_mut().visuals.hyperlink_color = colours::RED; - ui.hyperlink_to("❤", "https://codeberg.org/futile/gta-tools"); + ui.hyperlink_to("❤", "https://github.com/elituf/gta-tools"); }); ui.label(" from "); ui.hyperlink_to("futile", "https://futile.eu"); @@ -244,7 +244,7 @@ impl App { .on_hover_text("Go to current latest version."); if button.clicked() { let _ = - open::that("https://codeberg.org/futile/gta-tools/releases/latest"); + open::that("https://github.com/elituf/gta-tools/releases/latest"); } }); });