From be3c12f9dc8e669cc958c2f7e87ca018091a796d Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Thu, 29 Nov 2018 12:17:32 +0100 Subject: [PATCH] + chg: allow also "non reliable" CED detections for file decoding + chg: increasing VS version --- src/Edit.c | 3 ++- src/Version.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Edit.c b/src/Edit.c index 790006f1c..4ede31434 100644 --- a/src/Edit.c +++ b/src/Edit.c @@ -1052,7 +1052,8 @@ bool EditLoadFile( else if (iFileEncWeak != CPI_NONE) { iPreferedEncoding = iFileEncWeak; } - else if (!Encoding_IsNONE(iAnalyzedEncoding) && bIsReliable) { + // TODO: check switch for reliability in encoding settings + else if (!Encoding_IsNONE(iAnalyzedEncoding) /* && bIsReliable */) { iPreferedEncoding = iAnalyzedEncoding; } else if (Encoding_IsNONE(iPreferedEncoding)) { diff --git a/src/Version.h b/src/Version.h index 7594aa615..7fdcaf4fe 100644 --- a/src/Version.h +++ b/src/Version.h @@ -65,7 +65,7 @@ #if defined(_MSC_VER) #if (_MSC_VER >= 1916) #if(_MSC_FULL_VER >= 191627024) - #define VER_CPL MS Visual C++ 2017 v15.9.2 + #define VER_CPL MS Visual C++ 2017 v15.9.(2-3) #elif(_MSC_FULL_VER >= 191627023) #define VER_CPL MS Visual C++ 2017 v15.9.(0-1) #endif