Add application manifests for Windows executables

This commit is contained in:
Hennadii Stepanov 2025-04-29 15:15:18 +01:00
parent c5e44a0435
commit 5744db77b2
No known key found for this signature in database
GPG key ID: 410108112E7EA81F
8 changed files with 44 additions and 0 deletions

View file

@ -31,3 +31,5 @@ BEGIN
VALUE "Translation", 0x0, 1252 // language neutral - multilingual (decimal)
END
END
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST bitcoin-cli.manifest

9
src/bitcoin-cli.manifest Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="org.bitcoincore.bitcoin-cli" version="29.99.0.0"/>
<application>
<windowsSettings>
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
</windowsSettings>
</application>
</assembly>

View file

@ -31,3 +31,5 @@ BEGIN
VALUE "Translation", 0x0, 1252 // language neutral - multilingual (decimal)
END
END
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST bitcoin-wallet.manifest

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="org.bitcoincore.bitcoin-wallet" version="29.99.0.0"/>
<application>
<windowsSettings>
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
</windowsSettings>
</application>
</assembly>

View file

@ -31,3 +31,5 @@ BEGIN
VALUE "Translation", 0x0, 1252 // language neutral - multilingual (decimal)
END
END
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST bitcoind.manifest

9
src/bitcoind.manifest Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="org.bitcoincore.bitcoind" version="29.99.0.0"/>
<application>
<windowsSettings>
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
</windowsSettings>
</application>
</assembly>

View file

@ -38,3 +38,5 @@ BEGIN
VALUE "Translation", 0x0, 1252 // language neutral - multilingual (decimal)
END
END
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST bitcoin-qt.manifest

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="org.bitcoincore.bitcoin-qt" version="29.99.0.0"/>
<application>
<windowsSettings>
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
</windowsSettings>
</application>
</assembly>