diff options
author | fanquake <fanquake@gmail.com> | 2021-03-02 16:24:17 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-03-02 16:36:21 +0800 |
commit | 9086e0dd3c924b6c9a5ad05799d30d97b9ced3be (patch) | |
tree | 0e7a767618fc16d0befe8d23b8268a5a48429dbf | |
parent | 72e6979b31baa48b82e713b63a896aebf75ae8c8 (diff) |
build: set Unicode true for NSIS installer
Now that we are using Focal for gitian builds, and have NSIS 3.0+
available (also in Guix), we can create installers that support unicode.
Unicode is only becoming the default beginning with the 3.07 release,
https://nsis.sourceforge.io/Docs/AppendixF.html#v3.07-cl,
so we need to set this attribute to get support.
Should close: #13817
Co-authored-by: Chun Kuan Lee <ken2812221@gmail.com>
-rw-r--r-- | share/setup.nsi.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/setup.nsi.in b/share/setup.nsi.in index 681f243d04..85ae7c57af 100644 --- a/share/setup.nsi.in +++ b/share/setup.nsi.in @@ -3,6 +3,7 @@ Name "@PACKAGE_NAME@ (64-bit)" RequestExecutionLevel highest SetCompressor /SOLID lzma SetDateSave off +Unicode true # Uncomment these lines when investigating reproducibility errors #SetCompress off |