Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GUI/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down