Pieter Wuille
29a86a1735
Add extra asserts to addrman
13 years ago
Luke Dashjr
82e6b92b0a
Bugfix: %-12I64d is not valid and causes the parameter to be skipped, use %12"PRI64d" instead
13 years ago
Philip Kaufmann
7b74bd4928
changed cursor for selectable text on the about dialog to IBeamCursor and removed an unused tag
13 years ago
Philip Kaufmann
d7d7d81a6a
change text on message.ui from "Copy to Clipboard" to "Copy Signature" and
...
add an Alt-Shortcut to "Clear &All"
13 years ago
Philip Kaufmann
092522af6c
renamed qrcodedialog.ui window title to "QR-Code Dialog" and changed window size to the minimum values Qt Creator allows me to set
13 years ago
Wladimir J. van der Laan
e400258bf0
simplified qrcode icon that scales gracefully to 16x16
13 years ago
Wladimir J. van der Laan
460c51fdad
Add UI RPC console / debug window
13 years ago
Wladimir J. van der Laan
3793fa09ff
Allow Qt to wrap long tooltips ( fixes #1063 )
...
Implemented without having to touch any translation: by listening for QEvent::ToolTipChange events, then rewriting the tooltips to prefix `<qt/>` if it is not yet rich text.
13 years ago
Wladimir J. van der Laan
c8a3917089
signmessage: auto-select signature when field is focused/clicked
13 years ago
Philip Kaufmann
d0ccf0c755
move label placeholdertext from sendcoinsentry.cpp to ui-file
13 years ago
Gavin Andresen
397737b913
Bump version numbers for 0.6.1rc2
13 years ago
Pieter Wuille
19b6958cfd
Added -externalip and -discover
...
-externalip=<ip> can be used to explicitly set the public IP address
of your node. -discover=0 can be used to disable the automatic public
IP discovery system.
13 years ago
Pieter Wuille
39857190de
Support for multiple local addresses
13 years ago
Pieter Wuille
478b01d9a7
Add -seednode connections, and use this for -dnsseed + -proxydns
13 years ago
Pieter Wuille
9bab521df8
Support connecting by hostnames passed to proxy (-proxydns)
13 years ago
Pieter Wuille
a012e2db59
refactor ConnectSocket
13 years ago
Pieter Wuille
933f2715d8
SOCKS5 connect via hostname
13 years ago
Pieter Wuille
60a87bce87
SOCKS5 support by default
...
Add -socks=<n> to select SOCKS version to use. 4 and 5 are supported,
5 is default.
13 years ago
Philip Kaufmann
dab7acdf45
fix #952 by checking if we have a new address or an updated label
13 years ago
Peter Todd
86c47a5636
Fixed non-sensical error message
...
Previously trying to create a multisig address that required less than
one signature would output something like the following:
"wrong number of keys(got 1, need at least 0)"
13 years ago
Philip Kaufmann
e23a121afe
remove obsolete BackupWallet() entry in wallet.h
13 years ago
Philip Kaufmann
65c2ad687f
add a clear all button to the sign message page
13 years ago
Matt Corallo
234db30d66
Update to require IE 5.1 as it is required on mingw64.
...
We already require XP, this just fixes Mingw64 build.
13 years ago
Jeff Garzik
024fa1cb44
EvalScript(): cast to avoid signed/unsigned warning
13 years ago
Jeff Garzik
061a001590
ThreadSocketHandler2(): cast to avoid signed/unsigned warning
13 years ago
Jeff Garzik
10ab9c2f42
OpenBlockFile(): cast to eliminate signed/unsigned comparison warning
...
nFile's null value is -1. Cast that to unsigned int, to avoid warning.
Additionally, avoid nFile==0 because the first valid value is 1.
13 years ago
Jeff Garzik
24de922636
CDiskTxPos, CInPoint, COutPoint: cast null value (-1) to unsigned int
...
to eliminate signed/unsigned comparison warnings
13 years ago
Wladimir J. van der Laan
3ee5f8aac3
remove duplicate definition of SecureString in util.h
...
SecureString was moved to allocators.h in commit 6cb6d62347
13 years ago
Philip Kaufmann
aab1f950aa
small translation-file handling / loading changes and re-work comments to be clearer
13 years ago
Philip Kaufmann
1c94f88d5e
fix compiler warning "suggest parentheses around assignment used as truth
...
value [-Wparentheses]" in util.cpp
13 years ago
Philip Kaufmann
f8e4d43be7
fix compiler warning "suggest explicit braces to avoid ambiguous "else"
...
[-Wparentheses]" in net.cpp
13 years ago
Philip Kaufmann
00d971e1e7
remove references to bitcoin-wx from comment in init.cpp
13 years ago
Philip Kaufmann
810b4fad7d
remove unused typedef in serialize.h
13 years ago
Gavin Andresen
be8651dde7
Check earlier for blocks with duplicate transactions. Fixes #1167
13 years ago
Wladimir J. van der Laan
6974aff668
Fix critical UI performance issue ( #1154 )
13 years ago
Gavin Andresen
0acbe31cfc
Update openssl version
13 years ago
Gavin Andresen
2c31cfc271
Bump version numbers for 0.6.1rc1
13 years ago
freewil
42ce57687a
remove strange debug message from listsinceblock
13 years ago
freewil
fdb204abb1
listsinceblock: rpc param blockid -> blockhash
...
This is more consistent with the rest of the labeling seen
by the user when accessing the rpc commands.
13 years ago
Gavin Andresen
9e71a5cd23
Define TEST_DATA_DIR so unit tests can be run from any current working directory
13 years ago
Gavin Andresen
08e663d7e2
Undo part of c2e8c8ac
to fix issue#1148
13 years ago
Gavin Andresen
cfc45319fe
Remove unused -DNOPCH
13 years ago
Pieter Wuille
83743ed681
Make lsn_reset ("detach databases") optional and off by default.
...
Add an option -detachdb (and entry in OptionDialog), without which no
lsn_reset is called on addr.dat and blkindex.dat. That means these
files cannot be moved to a new environment, but shutdown can be
significantly faster. The wallet file is always lsn_reset'ed.
-detachdb corresponds to the old behaviour, though it is off by
default now to speed up shutdowns.
13 years ago
Timothy Redaelli
5e9dc15360
We should include netinet/in.h to use sockaddr_in (POSIX.1-2001)
13 years ago
Jeff Garzik
735a60698c
Change signed->unsigned at 3 code sites
...
This resolves signed/unsigned comparison warnings.
13 years ago
Jeff Garzik
5aa0b23825
CBlock::WriteToDisk() properly checks ftell(3) for error return
...
Rather than storing ftell(3)'s return value -- a long -- in an
unsigned int, we store and check a properly typed temp. Then, assured a
non-negative value, we store in nBlockPosRet.
13 years ago
Jeff Garzik
1d8c7a9557
Add casts for unavoidable signed/unsigned comparisons
...
At these code sites, it is preferable to cast rather than change
a variable's type.
13 years ago
Jeff Garzik
c0a0a93d02
Test ScriptSigArgsExpected() for error, before accumulating return value
13 years ago
Jeff Garzik
7bd9c3a3cf
SigOp and orphan-tx constants and counts are always unsigned.
...
Fixes several sign-comparison warnings.
13 years ago
Jeff Garzik
faf705a42a
Prefer 'unsigned int' for loop index variables tested against ::size()
...
C++ STL ::size() generally returns unsigned, which implies that "int idx"
style of loop variable will generate a signed-vs-unsigned comparison warning
when testing the loop exit condition "idx < blah.size()"
Update areas of the bitcoin code where loop variables may be more properly and
correctly defined as unsigned.
13 years ago