This commit is contained in:
WeeXnes 2022-06-28 18:46:26 +02:00
parent 2f9add84ef
commit acf0982632
2 changed files with 2 additions and 1 deletions

View file

@ -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/";

View file

@ -177,6 +177,7 @@ namespace WeeXnes
private void Window_Closing(object sender, CancelEventArgs e)
{
trayIcon.Dispose();
Globals.gameStateListener.Stop();
}
}
}