mirror of
https://github.com/wez/wezterm.git
synced 2024-11-26 16:34:23 +03:00
8092886146
Lua appears to populate package.path to something based on the executable path on windows, but since it uses msvcrt in ANSI mode, that string is encoded in whatever 8-bit MBCS is configured by the host system ACP setting. Rust expects that to be UTF-8, but Windows doesn't guarantee it. This commit updates the manifest for wezterm-gui to tell Windows that it wants its ACP to be set to UTF-8 prior to launch, which should resolve this situation for the GUI. This commit also introduces a more cut-down manifest for the console-subsystem executables that also use the lua config layer, which should hopefully resolve this issue for them. This commit was authored on a mac, so fingers crossed that it even compiles properly on windows! refs: https://github.com/wez/wezterm/issues/3390
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<assembly
|
|
manifestVersion="1.0"
|
|
xmlns="urn:schemas-microsoft-com:asm.v1"
|
|
xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
|
|
>
|
|
<asmv3:application>
|
|
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">
|
|
<activeCodePage>UTF-8</activeCodePage>
|
|
</asmv3:windowsSettings>
|
|
</asmv3:application>
|
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
|
<application>
|
|
<!-- Windows 10 and Windows 11 -->
|
|
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
|
</application>
|
|
</compatibility>
|
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
<security>
|
|
<requestedPrivileges>
|
|
<!--
|
|
UAC settings:
|
|
- app should run at same integrity level as calling process
|
|
- app does not need to manipulate windows belonging to
|
|
higher-integrity-level processes
|
|
-->
|
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
|
</requestedPrivileges>
|
|
</security>
|
|
</trustInfo>
|
|
</assembly>
|
|
|