diff --git a/Blueberry/Blueberry.csproj b/Blueberry/Blueberry.csproj index 6018944..817ab66 100644 --- a/Blueberry/Blueberry.csproj +++ b/Blueberry/Blueberry.csproj @@ -1,7 +1,7 @@  - Exe + WinExe net8.0-windows10.0.17763.0 enable enable diff --git a/Blueberry/UpdateManager.cs b/Blueberry/UpdateManager.cs index 4f028ff..81d194b 100644 --- a/Blueberry/UpdateManager.cs +++ b/Blueberry/UpdateManager.cs @@ -8,7 +8,7 @@ namespace Blueberry public static class UpdateManager { private const string releaseUrl = "https://git.technopunk.space/api/v1/repos/tomi/Blueberry/releases/latest"; - public const string CurrentVersion = "0.1.8"; + public const string CurrentVersion = "0.1.9"; private static readonly string appDir = AppDomain.CurrentDomain.BaseDirectory; private static readonly string zipPath = Path.Combine(appDir, "blueberry_update.zip"); private static readonly HttpClient client = new();