Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFaryan Rezagholi <faryan@rezagholi.de>2021-12-16 22:57:56 +0300
committerGitHub <noreply@github.com>2021-12-16 22:57:56 +0300
commit8a26b2f433421cb4e0caf0b93ef1352f86196c20 (patch)
tree26d18346d56f77e170f3ba5453e7e645f5c6b854
parent7cebc4ef424a7106bb066144e7c748897368ce03 (diff)
parenta18784d2c7a38aedb2e90a53f15538e334e819ad (diff)
Merge pull request #2088 from Vest/issue_2087
Launch updates from shell (fixes #2087)
-rw-r--r--CHANGELOG.md4
-rw-r--r--mRemoteNG/App/Shutdown.cs2
2 files changed, 3 insertions, 3 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.
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