2 Commits
0.2.6 ... 0.2.7

Author SHA1 Message Date
9fd3bb7fa5 bump 0.2.7 2026-01-15 20:07:10 +01:00
67cdfb0c21 fix(debug): hide debug console 2026-01-15 20:06:48 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>

View File

@@ -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.2.6";
public const string CurrentVersion = "0.2.7";
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();