mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-13 23:17:00 +08:00
[exe] single instance only
This commit is contained in:
@@ -8,6 +8,7 @@ using System.Net;
|
|||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using Microsoft.Win32;
|
using Microsoft.Win32;
|
||||||
@@ -35,6 +36,8 @@ namespace UptimeKuma {
|
|||||||
|
|
||||||
public class UptimeKumaApplicationContext : ApplicationContext
|
public class UptimeKumaApplicationContext : ApplicationContext
|
||||||
{
|
{
|
||||||
|
private static Mutex mutex = null;
|
||||||
|
|
||||||
const string appName = "Uptime Kuma";
|
const string appName = "Uptime Kuma";
|
||||||
|
|
||||||
private NotifyIcon trayIcon;
|
private NotifyIcon trayIcon;
|
||||||
@@ -48,6 +51,14 @@ namespace UptimeKuma {
|
|||||||
|
|
||||||
|
|
||||||
public UptimeKumaApplicationContext() {
|
public UptimeKumaApplicationContext() {
|
||||||
|
|
||||||
|
// Single instance only
|
||||||
|
bool createdNew;
|
||||||
|
mutex = new Mutex(true, appName, out createdNew);
|
||||||
|
if (!createdNew) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var startingText = "Starting server...";
|
var startingText = "Starting server...";
|
||||||
trayIcon = new NotifyIcon();
|
trayIcon = new NotifyIcon();
|
||||||
trayIcon.Text = startingText;
|
trayIcon.Text = startingText;
|
||||||
|
Reference in New Issue
Block a user