From d2114a015f818465958fc2183f4c0fc16521472f Mon Sep 17 00:00:00 2001 From: Arvind Shyamsundar Date: Wed, 16 Feb 2022 19:11:05 -0800 Subject: [PATCH] Expand notification message --- GUI/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/MainForm.cs b/GUI/MainForm.cs index ac09fd3..37e5fca 100644 --- a/GUI/MainForm.cs +++ b/GUI/MainForm.cs @@ -364,7 +364,7 @@ private void MainForm_Load(object sender, EventArgs e) { if (latestReleaseDateTimeServer > latestReleaseDateTimeLocal) { // if the server timestamp > local timestamp, prompt to download MessageBox.Show(this, - $"There is a newer release of SQLCallStackResolver ({latestreleaseDate}) available. You should exit, then download the latest release from https://aka.ms/SQLStack/releases. Then, extract the files from the release ZIP, overwriting and updating your older copy.", + $"You are currently on release {latestreleaseDate} of SQLCallStackResolver. There is a newer release ({latestReleaseDateTimeServer.ToString(LatestReleaseTimestampFormat, new CultureInfo(LatestReleaseTimestampCulture))}) available." + Environment.NewLine + "You should exit, then download the latest release from https://aka.ms/SQLStack/releases. Then, extract the files from the release ZIP, overwriting and updating your older copy.", "New release available.", MessageBoxButtons.OK, MessageBoxIcon.Information);