From 0e0a535b1565fd681bb1fc426822ae5d468524a5 Mon Sep 17 00:00:00 2001 From: Falco Date: Tue, 19 Sep 2023 22:22:52 +0200 Subject: [PATCH] Fixes version info wrong --- CoordinateConverter/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoordinateConverter/MainForm.cs b/CoordinateConverter/MainForm.cs index 5c0b346..0f2c778 100644 --- a/CoordinateConverter/MainForm.cs +++ b/CoordinateConverter/MainForm.cs @@ -19,7 +19,7 @@ namespace CoordinateConverter /// public partial class MainForm : Form { - private readonly GitHub.Version VERSION = new GitHub.Version(5, 0, 0); + private readonly GitHub.Version VERSION = new GitHub.Version(0, 5, 0); private readonly Color ERROR_COLOR = Color.Pink; private readonly Color DCS_ERROR_COLOR = Color.Yellow;