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);