# HG changeset patch # User s_nakamoto # Date 1279212406 0 # Node ID a74745519f741449d0c31980526a4b585db53358 # Parent e5950b5ebb02d8738d3444b55b631c9c440ba297 version 0.3.1 rc1 git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@104 1a98c847-1fd6-4fd8-948a-caf3550aa51b diff --git a/main.cpp b/main.cpp --- a/main.cpp +++ b/main.cpp @@ -2544,13 +2544,13 @@ 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; diff --git a/serialize.h b/serialize.h --- a/serialize.h +++ b/serialize.h @@ -20,7 +20,7 @@ class CAutoFile; static const int VERSION = 301; -static const char* pszSubVer = ".1"; +static const char* pszSubVer = ""; diff --git a/setup.nsi b/setup.nsi --- a/setup.nsi +++ b/setup.nsi @@ -7,7 +7,7 @@ # 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 @@ !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}"