diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-07-18 07:29:50 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-08-14 11:16:46 +0200 |
commit | 4b94f4e0ed38a95a3e2c3e80258fe73b88c3826c (patch) | |
tree | 24e557b2c48c99e6e4540d12bf7ffa5ca3549c5e /src/qt/res | |
parent | 0825aee8f4b2c942bb2ae5fbc63afa576fbe0f1b (diff) |
Bitcoin-Qt (Windows only): extend Resource File
- 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
Diffstat (limited to 'src/qt/res')
-rw-r--r-- | src/qt/res/bitcoin-qt.rc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/qt/res/bitcoin-qt.rc b/src/qt/res/bitcoin-qt.rc index 1a1ab53be4..bce87d782b 100644 --- a/src/qt/res/bitcoin-qt.rc +++ b/src/qt/res/bitcoin-qt.rc @@ -1 +1,27 @@ 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 |