Prevent multiple instances, allow starting in tray, documentation edits and priority support #4

Merged
alexhorner merged 9 commits from master into master 2022-12-12 17:01:23 -05:00
12 changed files with 168 additions and 117 deletions
Showing only changes of commit d90ddc3be4 - Show all commits

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>

View File

@@ -7,6 +7,7 @@ using System.Linq;
using System.Reflection;
using System.Windows.Forms;
using Newtonsoft.Json;
using ntfysh_client.Notifications;
namespace ntfysh_client
{

View File

@@ -1,5 +1,4 @@
using Newtonsoft.Json;
using System;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
@@ -12,8 +11,9 @@ using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
using Newtonsoft.Json;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class NotificationListener
{

View File

@@ -1,6 +1,6 @@
using System;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class NotificationReceiveEventArgs : EventArgs
{

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class NtfyEvent
{

View File

@@ -3,7 +3,7 @@ using System.Threading;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ntfysh_client
namespace ntfysh_client.Notifications
{
public class SubscribedTopic
{

View File

@@ -4,6 +4,7 @@ using System.IO;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
using ntfysh_client.Notifications;
namespace ntfysh_client
{

View File

@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net472" />
</packages>