Major overhaul #2

Merged
alexhorner merged 14 commits from master into master 2022-12-08 08:13:17 -05:00
17 changed files with 964 additions and 686 deletions
Showing only changes of commit bba9051b4b - Show all commits

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
@@ -204,7 +205,10 @@ namespace ntfysh_client
private void ntfyshWebsiteToolStripMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://ntfy.sh/");
Process.Start(new ProcessStartInfo("https://ntfy.sh/")
{
UseShellExecute = true
});
}
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)