mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
d47bb1d297
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public static class UpdateUtil
|
|
{
|
|
/// <summary>
|
|
/// Gets the latest version of PKHeX according to the GitHub API
|
|
/// </summary>
|
|
/// <returns>A version representing the latest available version of PKHeX, or null if the latest version could not be determined</returns>
|
|
public static Version? GetLatestPKHeXVersion()
|
|
{
|
|
const string apiEndpoint = "https://api.github.com/repos/kwsch/pkhex/releases/latest";
|
|
var responseJson = NetUtil.GetStringFromURL(new Uri(apiEndpoint));
|
|
if (responseJson is null)
|
|
return null;
|
|
|
|
// Parse it manually; no need to parse the entire json to object.
|
|
const string tag = "tag_name";
|
|
var index = responseJson.IndexOf(tag, StringComparison.Ordinal);
|
|
if (index == -1)
|
|
return null;
|
|
|
|
var first = responseJson.IndexOf('"', index + tag.Length + 1) + 1;
|
|
if (first == 0)
|
|
return null;
|
|
var second = responseJson.IndexOf('"', first);
|
|
if (second == -1)
|
|
return null;
|
|
|
|
var tagString = responseJson.AsSpan()[first..second];
|
|
return !Version.TryParse(tagString, out var latestVersion) ? null : latestVersion;
|
|
}
|
|
}
|