d715ac1675
Somewhat frustratingly, I only discovered this could be resolved with a manifest change after first wasting hours trying to detect unicode text in the NSIS installer, and warning the user that they'd need to change their system locale if unicode text was found. Also tried adjusting the locale with setlocale() on program startup, which did not help, perhaps because it needs to be set before libc init.
10 lines
496 B
XML
10 lines
496 B
XML
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
<windowsSettings>
|
|
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
|
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
|
|
</windowsSettings>
|
|
</application>
|
|
</assembly>
|