From 6ba4854bd8a50c4ef297f6af9985b09b5128435f Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Tue, 18 Aug 2026 13:14:46 -0400 Subject: [PATCH] Fix update check URL --- UpdateCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UpdateCheck.cs b/UpdateCheck.cs index bd021bf..36be7e1 100644 --- a/UpdateCheck.cs +++ b/UpdateCheck.cs @@ -11,7 +11,7 @@ internal static class UpdateCheck { private static UpdateManager _updateManager; - public static UpdateManager UpdateManager => _updateManager ??= new UpdateManager(new GithubSource("https://github.com/ckaczor/WorkIndicator", null, false)); + public static UpdateManager UpdateManager => _updateManager ??= new UpdateManager(new GiteaSource("https://gitea.kaczorzoo.net/ckaczor/WorkIndicator", null, false)); public static string LocalVersion => (UpdateManager.CurrentVersion ?? new SemanticVersion(0, 0, 0)).ToString();