forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
46 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
IDI_ICON1 ICON DISCARDABLE "icons/groestlcoin.ico" | ||
IDI_ICON2 ICON DISCARDABLE "icons/groestlcoin_testnet.ico" | ||
IDI_ICON3 ICON DISCARDABLE "icons/groestlcoin_signet.ico" | ||
IDI_ICON4 ICON DISCARDABLE "icons/groestlcoin_testnet.ico" // testnet4 | ||
|
||
#include <windows.h> // needed for VERSIONINFO | ||
#include "../../clientversion.h" // holds the needed client version information | ||
#define PACKAGE_NAME "Groestlcoin Core" | ||
|
||
#define VER_PRODUCTVERSION CLIENT_VERSION_MAJOR,CLIENT_VERSION_MINOR,CLIENT_VERSION_BUILD | ||
#define VER_PRODUCTVERSION_STR STRINGIZE(CLIENT_VERSION_MAJOR) "." STRINGIZE(CLIENT_VERSION_MINOR) "." STRINGIZE(CLIENT_VERSION_BUILD) | ||
#define VER_FILEVERSION VER_PRODUCTVERSION | ||
#define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION VER_FILEVERSION | ||
PRODUCTVERSION VER_PRODUCTVERSION | ||
FILEOS VOS_NT_WINDOWS32 | ||
FILETYPE VFT_APP | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" // U.S. English - multilingual (hex) | ||
BEGIN | ||
VALUE "CompanyName", "Groestlcoin" | ||
VALUE "FileDescription", CLIENT_NAME " (GUI node for Groestlcoin)" | ||
VALUE "FileVersion", VER_FILEVERSION_STR | ||
VALUE "InternalName", "groestlcoin-qt" | ||
VALUE "LegalCopyright", COPYRIGHT_STR | ||
VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." | ||
VALUE "OriginalFilename", "groestlcoin-qt.exe" | ||
VALUE "ProductName", CLIENT_NAME | ||
VALUE "ProductVersion", VER_PRODUCTVERSION_STR | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x0, 1252 // language neutral - multilingual (decimal) | ||
END | ||
END |