mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
4b94f4e0ed
- extend bitcoin-qt.rc to include meta information, which is displayed on Windows, when looking in the executable properties and selecting "Details" - does currently NOT include version information, this is scheduled for later releases - for RC-file documentation see: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058%28v=vs.85%29.aspx
28 lines
1000 B
Plaintext
28 lines
1000 B
Plaintext
IDI_ICON1 ICON DISCARDABLE "icons/bitcoin.ico"
|
|
|
|
#include <windows.h> // needed for VERSIONINFO
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_APP
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4" // U.S. English - multilingual (hex)
|
|
BEGIN
|
|
VALUE "CompanyName", "Bitcoin"
|
|
VALUE "FileDescription", "Bitcoin-Qt (OSS GUI client for Bitcoin)"
|
|
VALUE "InternalName", "bitcoin-qt"
|
|
VALUE "LegalCopyright", "2009-2012 The Bitcoin developers"
|
|
VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
|
|
VALUE "OriginalFilename", "bitcoin-qt.exe"
|
|
VALUE "ProductName", "Bitcoin-Qt"
|
|
END
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0, 1252 // language neutral - multilingual (decimal)
|
|
END
|
|
END
|