From a5fcdc328e89fa69bc133eb2e10a4a46e48fe3eb Mon Sep 17 00:00:00 2001 From: Matt Pannella Date: Sat, 20 Aug 2022 16:47:17 -0400 Subject: [PATCH] messages --- Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 2f415987..8ac7a44e 100644 --- a/Program.cs +++ b/Program.cs @@ -8,8 +8,10 @@ internal class Program private const string API_URL = "https://api.github.com/repos/mattpannella/pocket_core_autoupdate_net/releases"; private static async Task Main(string[] args) { + Console.WriteLine("Analogue Pocket Core Updater v" + VERSION); + Console.WriteLine("Checking for updates..."); if(await CheckVersion()) { - Console.WriteLine("A new version of this utility is availailable. Go to this url to download it:"); + Console.WriteLine("A new version is available. Go to this url to download it:"); Console.WriteLine("https://github.com/mattpannella/pocket_core_autoupdate_net/releases"); Console.WriteLine("Would you like to continue anyway? [y/n]:"); ConsoleKey response = Console.ReadKey(false).Key;