From 1cb9380b5b2820e6ab2dc93010bc7014550b73b7 Mon Sep 17 00:00:00 2001 From: Vichingo455 Date: Mon, 8 Sep 2025 14:35:46 +0200 Subject: [PATCH] changes --- Notepad/Form1.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Notepad/Form1.cs b/Notepad/Form1.cs index 7bc8f4d..fd5f36f 100644 --- a/Notepad/Form1.cs +++ b/Notepad/Form1.cs @@ -202,14 +202,13 @@ namespace Notepad if (equals == 0) { - // Up-to-date MessageBox.Show("The program is up-to-date", Text, MessageBoxButtons.OK); } else if (equals < 0) { MessageBox.Show("You are using an unofficial release of Notepad", Text, MessageBoxButtons.OK); // Unofficial } - else // New release available! + else { if (MessageBox.Show("This new version is available:" + " " + LatestVersion + ". You are using the version" + " " + CurrentVersion + ". Do you want to open the download website?", Text, MessageBoxButtons.YesNo) == DialogResult.Yes) // New release available! { @@ -249,7 +248,8 @@ namespace Notepad private void giveAFeedbackToolStripMenuItem_Click(object sender, EventArgs e) { - Process.Start("https://forms.gle/crZF4YJ6eiAzQ8ic8"); + // TODO + //Process.Start("https://forms.gle/crZF4YJ6eiAzQ8ic8"); } private void resetTransparencyToolStripMenuItem_Click(object sender, EventArgs e) @@ -422,6 +422,5 @@ namespace Notepad public class Global { public static string savefilename; - public static string confidential; } }