From 3c25a987fd59a11d1a0124700d143f768cbe47c9 Mon Sep 17 00:00:00 2001 From: Vest Date: Thu, 16 Dec 2021 19:02:25 +0100 Subject: [PATCH 1/2] Fix the issue #2087 Signed-off-by: Vest --- mRemoteNG/App/Shutdown.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mRemoteNG/App/Shutdown.cs b/mRemoteNG/App/Shutdown.cs index e69c557e..2067cbdb 100644 --- a/mRemoteNG/App/Shutdown.cs +++ b/mRemoteNG/App/Shutdown.cs @@ -120,7 +120,7 @@ namespace mRemoteNG.App private static void RunUpdateFile() { if (UpdatePending) - Process.Start(_updateFilePath); + Process.Start(new ProcessStartInfo(_updateFilePath) { UseShellExecute = true }); } } } \ No newline at end of file From a18784d2c7a38aedb2e90a53f15538e334e819ad Mon Sep 17 00:00:00 2001 From: Vest Date: Thu, 16 Dec 2021 19:04:49 +0100 Subject: [PATCH 2/2] Updated changelog. Signed-off-by: Vest --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1263ad38..62b8c989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - #1690: Replaced GeckoFX (Firefox) with CefSharp (Chromium) - #1325: Language resource files cleanup ### Fixed +- #2087: Fixed application crash, when the update file is launched from the application - #2079: Fixed theme files not being copied to output directory - #1884: Allow setting Port when using MSSQL - #1783: Added missing inheritance properties to SQL scripts @@ -44,8 +45,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - #1589: Update SQL tables instead of rewriting them - #1465: REGRESSION: Smart Cards redirection to Remote Desktop not working - #1363: Don't show "Disk Usage" button in installer -- #1337: Unhandled exception after closing mRemoteNG/mRemoteNG/compare/v1 -- #870: Enhancement - Push Inheritance from folder to all objects below +- #1337: Unhandled exception after closing mRemoteNG - #359: Making a VNC connection to an unreachable host causes the application to not respond for 20-30 seconds - #618: Do not break the Windows Clipboard Chain when exiting.