From 157bda8f51117ce1ae084bdd5adc3b3d94082458 Mon Sep 17 00:00:00 2001 From: Vest Date: Wed, 22 Dec 2021 22:36:38 +0100 Subject: [PATCH 1/2] Fix BinaryFileTest mRemoteNGTests doesn't define "DEBUG" and "PORTABLE", but defines "DEBUG_PORTABLE" macro. Signed-off-by: Vest --- mRemoteNGTests/BinaryFileTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mRemoteNGTests/BinaryFileTests.cs b/mRemoteNGTests/BinaryFileTests.cs index c64efb049..1ba2bbe16 100644 --- a/mRemoteNGTests/BinaryFileTests.cs +++ b/mRemoteNGTests/BinaryFileTests.cs @@ -17,14 +17,14 @@ namespace mRemoteNGTests public string GetTargetPath([CallerFilePath] string sourceFilePath = "") { const string debugOrRelease = - #if DEBUG + #if DEBUG || DEBUG_PORTABLE "Debug"; #else "Release"; #endif const string normalOrPortable = - #if PORTABLE + #if PORTABLE || DEBUG_PORTABLE " Portable"; #else ""; From c71ec34998772c490bc39b6adfd449e2bd8d89ff Mon Sep 17 00:00:00 2001 From: Vest Date: Wed, 22 Dec 2021 22:40:10 +0100 Subject: [PATCH 2/2] Updated changelog Signed-off-by: Vest --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40bed06e2..e47d375b7 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 +- #2098: Fix failed BinaryFileTest - #2096: Corrected encryption code of LegacyRijndaelCryptographyProvider - #2089: Fixed the exception thrown by menu buttons "Documentation" and "Website" - #2087: Fixed application crash, when the update file is launched from the application