diff --git a/Notepad/Form1.cs b/Notepad/Form1.cs index 2848cb1..897d22f 100644 --- a/Notepad/Form1.cs +++ b/Notepad/Form1.cs @@ -119,7 +119,7 @@ namespace Notepad { SaveFileDialog sfd = new SaveFileDialog(); sfd.Title = "Save the file"; - sfd.Filter = "*.txt|*.txt|*.*|*.*"; + sfd.Filter = "Text file|*.txt|All files|*.*"; sfd.DefaultExt = "*.txt"; if (sfd.ShowDialog() == DialogResult.OK) { diff --git a/Notepad/Program.cs b/Notepad/Program.cs index 88d73f6..619a78c 100644 --- a/Notepad/Program.cs +++ b/Notepad/Program.cs @@ -29,7 +29,7 @@ namespace Notepad body = HttpUtility.UrlEncode(body); - string uri = $"https://github.com/Vichingo455/Notepad/issues/new?labels=crash+report&title={header}&body={body}"; + string uri = $"https://git.vichingo455.freeddns.org/Vichingo455/Notepad/issues/new?title={header}&body={body}"; Process.Start(uri); } ///