From d18c26eea59ac0b154a5569c346c4a33524f0ecd Mon Sep 17 00:00:00 2001 From: anders_k Date: Mon, 10 Aug 2020 22:26:36 +0000 Subject: [PATCH] Unicode is the now default for i386 git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7212 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/history.but | 14 ++++++++++++++ Source/build.cpp | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Docs/src/history.but b/Docs/src/history.but index bbcae90c..3d0ad3c6 100644 --- a/Docs/src/history.but +++ b/Docs/src/history.but @@ -1,5 +1,19 @@ \A{history} Changelog and Release Notes +\H{v3.07} 3.07 + +Released on ??? ??th, 20?? + +\S1{v3.07-rl} Release Notes + +Unicode is the now default. + +\S1{v3.07-cl} Changelog + +\S2{} Major Changes + +\b Unicode is the now default + \H{v3.06.1} 3.06.1 Released on July 31st, 2020 diff --git a/Source/build.cpp b/Source/build.cpp index 276af303..1ade37dc 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -128,7 +128,7 @@ CEXEBuild::CEXEBuild(signed char pponly, bool warnaserror) : definedlist.add(_T("NSIS_VERSION"), NSIS_VERSION); definedlist.add(_T("NSIS_PACKEDVERSION"), NSIS_PACKEDVERSION); - m_target_type=TARGET_X86ANSI; + m_target_type=TARGET_X86UNICODE; #ifdef _WIN32 if (sizeof(void*) > 4) m_target_type = TARGET_AMD64; // BUGBUG: scons 'TARGET_ARCH' should specify the default #endif