Merge pull request #2088 from Vest/issue_2087

Launch updates from shell (fixes #2087)
This commit is contained in:
Faryan Rezagholi
2021-12-16 20:57:56 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -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.

View File

@@ -120,7 +120,7 @@ namespace mRemoteNG.App
private static void RunUpdateFile()
{
if (UpdatePending)
Process.Start(_updateFilePath);
Process.Start(new ProcessStartInfo(_updateFilePath) { UseShellExecute = true });
}
}
}