From acf0982632b33d0a995e410d1a27b0bc25bfe481 Mon Sep 17 00:00:00 2001 From: WeeXnes Date: Tue, 28 Jun 2022 18:46:26 +0200 Subject: [PATCH] bugfix --- WeeXnes/Core/Globals.cs | 2 +- WeeXnes/MainWindow.xaml.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/WeeXnes/Core/Globals.cs b/WeeXnes/Core/Globals.cs index c470682..ab195e2 100644 --- a/WeeXnes/Core/Globals.cs +++ b/WeeXnes/Core/Globals.cs @@ -16,7 +16,7 @@ namespace WeeXnes.Core public static string encryptionKey = "8zf5#RdyQ]$4x4_"; public static string AppDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "WeeXnes"); public static string SettingsFileName = "settings.ini"; - public static string version = "3.4"; + public static string version = "3.5"; public static bool info_isRpcRunning = false; public static bool info_RpcAutoStart; public static string apiUrl = "http://www.weexnes.com:5169/"; diff --git a/WeeXnes/MainWindow.xaml.cs b/WeeXnes/MainWindow.xaml.cs index e1739db..39b6bdd 100644 --- a/WeeXnes/MainWindow.xaml.cs +++ b/WeeXnes/MainWindow.xaml.cs @@ -177,6 +177,7 @@ namespace WeeXnes private void Window_Closing(object sender, CancelEventArgs e) { trayIcon.Dispose(); + Globals.gameStateListener.Stop(); } } }