Skip to content

Commit 2d30167

Browse files
committed
Update Settings.cs
1 parent 8886674 commit 2d30167

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ATA GUI/Forms/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private async void buttonCheckLastVersion_ClickAsync(object sender, EventArgs e)
4949
changelog = jsonReal[0]["body"];
5050
if ((latestRelease.Number > currentRelease.Number) || ((latestRelease.Number == currentRelease.Number) && (currentRelease.Pre && !latestRelease.Pre)))
5151
{
52-
if (MessageBox.Show("Update found, do you want to update it?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
52+
if (MessageBox.Show("New version found: " + latestReleaseName + "\nCurrent Version: " + CURRENTVERSION + "\n\nDo you want to update it?", "Update found!", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
5353
{
5454
Process.Start((string)jsonReal[0]["html_url"]);
5555
UpdateForm update = new UpdateForm(linkString);

0 commit comments

Comments
 (0)