version 0.3.1 rc1
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@104 1a98c847-1fd6-4fd8-948a-caf3550aa51b
This commit is contained in:
parent
a30b56ebe7
commit
d01eaf0421
3 changed files with 5 additions and 5 deletions
2
main.cpp
2
main.cpp
|
@ -2544,13 +2544,13 @@ void BlockSHA256(const void* pin, unsigned int nBlocks, void* pout)
|
|||
void BitcoinMiner()
|
||||
{
|
||||
printf("BitcoinMiner started\n");
|
||||
SetThreadPriority(THREAD_PRIORITY_LOWEST);
|
||||
|
||||
CKey key;
|
||||
key.MakeNewKey();
|
||||
CBigNum bnExtraNonce = 0;
|
||||
while (fGenerateBitcoins)
|
||||
{
|
||||
SetThreadPriority(THREAD_PRIORITY_LOWEST);
|
||||
Sleep(50);
|
||||
if (fShutdown)
|
||||
return;
|
||||
|
|
|
@ -20,7 +20,7 @@ class CDataStream;
|
|||
class CAutoFile;
|
||||
|
||||
static const int VERSION = 301;
|
||||
static const char* pszSubVer = ".1";
|
||||
static const char* pszSubVer = "";
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ RequestExecutionLevel highest
|
|||
|
||||
# General Symbol Definitions
|
||||
!define REGKEY "SOFTWARE\$(^Name)"
|
||||
!define VERSION 0.3.0
|
||||
!define VERSION 0.3.1
|
||||
!define COMPANY "Bitcoin project"
|
||||
!define URL http://www.bitcoin.org/
|
||||
|
||||
|
@ -42,12 +42,12 @@ Var StartMenuGroup
|
|||
!insertmacro MUI_LANGUAGE English
|
||||
|
||||
# Installer attributes
|
||||
OutFile bitcoin-0.3.0-win32-setup.exe
|
||||
OutFile bitcoin-0.3.1-win32-setup.exe
|
||||
InstallDir $PROGRAMFILES\Bitcoin
|
||||
CRCCheck on
|
||||
XPStyle on
|
||||
ShowInstDetails show
|
||||
VIProductVersion 0.3.0.0
|
||||
VIProductVersion 0.3.1.0
|
||||
VIAddVersionKey ProductName Bitcoin
|
||||
VIAddVersionKey ProductVersion "${VERSION}"
|
||||
VIAddVersionKey CompanyName "${COMPANY}"
|
||||
|
|
Loading…
Reference in a new issue