Update GitHub source URL for UpdateManager

This commit is contained in:
Miguel 2025-10-19 16:01:25 +02:00 committed by GitHub
parent 6a52bab2d2
commit 02586d5c79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,7 @@ namespace DSPRE {
public static void CheckForUpdates(bool silent = true)
{
AppLogger.Info("Checking for updates...");
var mgr = new UpdateManager(new GithubSource("https://github.com/Mixone-FinallyHere/DS-Pokemon-Rom-Editor", "", prerelease: false));
var mgr = new UpdateManager(new GithubSource("https://github.com/DS-Pokemon-Rom-Editor/DSPRE", "", prerelease: false));
var newVersion = mgr.CheckForUpdates();
if (newVersion == null)
@ -941,4 +941,4 @@ namespace DSPRE {
}
}
}
}