Merge branch 'master' of https://github.com/bitcoin/bitcoin
This commit is contained in:
commit
7beada58cd
6 changed files with 561 additions and 449 deletions
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -3,8 +3,8 @@ msgstr ""
|
|||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: m0Ray <m0ray@nm.ru>\n"
|
||||
"POT-Creation-Date: 2011-05-15 18:24+0100\n"
|
||||
"PO-Revision-Date: 2011-05-23 07:06+0500\n"
|
||||
"Last-Translator: m0Ray <m0ray@nm.ru>\n"
|
||||
"PO-Revision-Date: 2011-07-17 04:18+0100\n"
|
||||
"Last-Translator: Michael Bemmerl <mail@mx-server.de>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -448,7 +448,7 @@ msgstr "&Открыть Bitcoin"
|
|||
|
||||
#: ../../../src/ui.cpp:2682
|
||||
msgid "&Send Bitcoins"
|
||||
msgstr "&Открыть Bitcoin"
|
||||
msgstr "&Отправить Bitcoins"
|
||||
|
||||
#: ../../../src/ui.cpp:2683
|
||||
msgid "O&ptions..."
|
||||
|
|
|
@ -2574,6 +2574,7 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
|
|||
vGetData.clear();
|
||||
}
|
||||
}
|
||||
mapAlreadyAskedFor[inv] = nNow;
|
||||
pto->mapAskFor.erase(pto->mapAskFor.begin());
|
||||
}
|
||||
if (!vGetData.empty())
|
||||
|
|
|
@ -41,12 +41,12 @@ DEFS=$(DEFS) /DUSE_UPNP=$(USE_UPNP)
|
|||
!ENDIF
|
||||
|
||||
LIBS=$(LIBS) \
|
||||
kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib ws2_32.lib shlwapi.lib
|
||||
kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib ws2_32.lib shlwapi.lib iphlpapi.lib
|
||||
|
||||
DEBUGFLAGS=/Os
|
||||
CFLAGS=/MD /c /nologo /EHsc /GR /Zm300 $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
|
||||
HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \
|
||||
script.h db.h net.h irc.h main.h rpc.h uibase.h ui.h noui.h init.h wallet.h keystore.h
|
||||
script.h db.h net.h irc.h main.h rpc.h uibase.h ui.h noui.h init.h wallet.h keystore.h crypter.h
|
||||
|
||||
OBJS= \
|
||||
obj\util.obj \
|
||||
|
@ -58,7 +58,8 @@ OBJS= \
|
|||
obj\main.obj \
|
||||
obj\wallet.obj \
|
||||
obj\rpc.obj \
|
||||
obj\init.obj
|
||||
obj\init.obj \
|
||||
obj\crypter.obj
|
||||
|
||||
CRYPTOPP_OBJS= \
|
||||
cryptopp\obj\sha.obj \
|
||||
|
@ -93,6 +94,8 @@ obj\rpc.obj: $(HEADERS)
|
|||
|
||||
obj\init.obj: $(HEADERS)
|
||||
|
||||
obj\crypter.obj: $(HEADERS)
|
||||
|
||||
obj\ui.obj: $(HEADERS)
|
||||
|
||||
obj\uibase.obj: $(HEADERS)
|
||||
|
|
Loading…
Reference in a new issue