qBittorrent
qBittorrent copied to clipboard
Opt into Windows SegmentHeap
SegmentHeap provides a faster malloc implementation that only available with Dynamic UCRT in Windows 10, version 2004 (build 19041) and later
Wrong schema setting being used!!!
It needs to have it's own, see: https://learn.microsoft.com/en-au/windows/win32/sbscs/application-manifests#heaptype
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">
<heapType>SegmentHeap</heapType>
Unsure if comment is ok "as-is", but some alternatives:
<!-- Enable Segment Heap on supported platforms (requires Windows 10 2004 or newer) -->
<!-- Override Windows default heap implementation with more modern "Segment Heap" on supported platforms (requires Windows 10 2004 or newer) -->
@Andarwinux Thank you!