Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-10 | Build identification strings | Pieter Wuille | |
All client version information is moved to version.cpp, which optionally (-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated on supporting platforms via contrib/genbuild.sh, using git describe. The git export-subst attribute is used to put the commit id statically in version.cpp inside generated archives, and this value is used if no build.h is present. The gitian descriptors are modified to use git archive instead of a copy, to create the src/ directory in the output. This way, src/src/version.cpp will contain the static commit id. To prevent gitian builds from getting the "-dirty" marker in their git-describe generated identifiers, no touching of files or running sed on the makefile is performed anymore. This does not seem to influence determinism. | |||
2012-04-05 | Flush on log size instead of transaction count | Pieter Wuille | |
2012-04-04 | Remove USE_SSL #define | Gavin Andresen | |
2012-04-04 | qtui.h/noui.h interface cleanup | Wladimir J. van der Laan | |
- rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2 | |||
2012-04-04 | move QT_PLUGINS stuff to qt main file, where it belongs | Wladimir J. van der Laan | |
2012-04-03 | VC2010 compile fixes | Wladimir J. van der Laan | |
2012-03-22 | Introduce explicit -walletupgrade option | Pieter Wuille | |
Do not automatically change the wallet format unless the user takes an explicit action that implies an upgrade (encrypting, for now), or uses -walletupgrade. -walletupgrade optionally takes an integer argument: the client version up to which upgrading is allowed. Without an argument, it is upgraded to latest supported version. If an argument to -walletupgrade is provided at the time the wallet is created, the new wallet will initially not use features beyond that version. Third, the current wallet version number is reported in getinfo. | |||
2012-03-22 | Merge branch 'checklevel' of https://github.com/sipa/bitcoin | Gavin Andresen | |
2012-03-22 | Merge branch 'addrman' of https://github.com/sipa/bitcoin | Gavin Andresen | |
2012-03-22 | Merge pull request #964 from sipa/fastblocks | Gavin Andresen | |
Speed up block downloading | |||
2012-03-22 | Add -checklevel and improve -checkblocks | Pieter Wuille | |
-checkblocks now takes a numeric argument: the number of blocks that must be verified at the end of the chain. Default is 2500, and 0 means all blocks. -checklevel specifies how thorough the verification must be: 0: only check whether the block exists on disk 1: verify block validity (default) 2: verify transaction index validity 3: check transaction hashes 4: check whether spent txouts were spent within the main chain 5: check whether all prevouts are marked spent 6: check whether spent txouts were spent by a valid transaction that consumes them | |||
2012-03-21 | Remove -bip16 and -paytoscripthashtime command-line arguments | Gavin Andresen | |
2012-03-21 | Speed up block downloading | Pieter Wuille | |
2012-03-11 | Print wallet load errors (to debug.log) | Luke Dashjr | |
2012-02-27 | Move BIP16 switchover time to April 1 | Gavin Andresen | |
2012-02-26 | Reworked QT settings | Gavin Andresen | |
2012-02-26 | bitcoind changes to stop storing settings in wallet.dat. | Gavin Andresen | |
2012-02-24 | Add option "-splash" so we can disable the splash screen. | Chris Moore | |
Don't show splash screen when -min is specified on the command line. | |||
2012-02-24 | CAddrMan: stochastic address manager | Pieter Wuille | |
Design goals: * Only keep a limited number of addresses around, so that addr.dat does not grow without bound. * Keep the address tables in-memory, and occasionally write the table to addr.dat. * Make sure no (localized) attacker can fill the entire table with his nodes/addresses. See comments in addrman.h for more detailed information. | |||
2012-02-22 | Leave IRC enabled by default on testnet | Pieter Wuille | |
As testnet has neither DNS seeds or built-in seed addresses to bootstrap from. | |||
2012-02-20 | Merge pull request #857 from laanwj/2012_02_fixhelpwindow | Wladimir J. van der Laan | |
On windows, show message box with help, as there is no stderr (fixes #702) | |||
2012-02-17 | Allow setting UI language from commandline (implements #678) | Wladimir J. van der Laan | |
2012-02-17 | Change #ifdef GUI to #ifdef QT_GUI, GUI is not defined anymore... | Wladimir J. van der Laan | |
2012-02-17 | On windows, show message box with help, as there is no stderr (fixes #702) | Wladimir J. van der Laan | |
2012-02-17 | don't allow -daemon in bitcoin-qt (changes only #defines) | Wladimir J. van der Laan | |
2012-02-10 | Enable accessible widgets Qt module on win32, so that people with screen ↵ | Wladimir J. van der Laan | |
readers such as NVDA can make sense of it. | |||
2012-02-07 | Update all copyrights to 2012 | Gavin Andresen | |
2012-02-07 | Look for flushwallet/listen/irc/dnsseed/upnp instead of noflushwallet/etc. ↵ | Gavin Andresen | |
And switch default for irc to 0. | |||
2012-02-06 | -bip16 option (default: 1) to support / not support BIP 16. And bumped ↵ | Gavin Andresen | |
default BIP16 switchover date from Feb 15 to Mar 1 | |||
2012-02-01 | Allow -upnp to override setting in wallet (and simplify logic a bit) | Gavin Andresen | |
2012-01-26 | Merge pull request #593 (Full URL Support in bitcoin-qt) | Wladimir J. van der Laan | |
2012-01-17 | Fix handling of default ports | Pieter Wuille | |
2012-01-12 | Add -keepnode which attempts to -addnode and keep a connection open | Matt Corallo | |
2012-01-12 | Merge pull request #743 from gavinandresen/blocknotify | Gavin Andresen | |
-blocknotify : run a command when best-block changes | |||
2012-01-06 | Network stack refactor | Pieter Wuille | |
This introduces CNetAddr and CService, respectively wrapping an (IPv6) IP address and an IP+port combination. This functionality used to be part of CAddress, which also contains network flags and connection attempt information. These extra fields are however not always necessary. These classes, along with logic for creating connections and doing name lookups, are moved to netbase.{h,cpp}, which does not depend on headers.h. Furthermore, CNetAddr is mostly IPv6-ready, though IPv6 functionality is not yet enabled for the application itself. | |||
2012-01-05 | Add support for opening bitcoin: URIs directly. | Matt Corallo | |
2012-01-03 | -blocknotify=command argument, implemented using system() and boost::thread | Gavin Andresen | |
2012-01-03 | I broke -testnet with my TOR option-parsing fixes. | Gavin Andresen | |
2012-01-03 | Fix issue #659, and cleanup wallet/command-line argument handling a bit | Gavin Andresen | |
2011-12-21 | Revert "Use standard C99 (and Qt) types for 64-bit integers" | Wladimir J. van der Laan | |
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9. | |||
2011-12-20 | Use standard C99 (and Qt) types for 64-bit integers | Luke Dashjr | |
2011-12-20 | Merge pull request #717 from TheBlueMatt/installerqtupgrade | Gavin Andresen | |
Implement "Start on window system startup" on Win32 + Linux. | |||
2011-12-20 | Implement "Start on window system startup" on Win32 + Linux. | Matt Corallo | |
2011-12-19 | Merge pull request #690 from runeksvendsen/qt-cmdline-options-parsing | Gavin Andresen | |
When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main() | |||
2011-12-16 | Move more newlines out of strings, and fix translations. | Gavin Andresen | |
2011-12-13 | move \\n outside _() in --help | Nils Schneider | |
2011-12-09 | When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main() | Rune K Svendsen | |
2011-12-02 | Merge pull request #654 from TheBlueMatt/dnsseed-thread | Gavin Andresen | |
Move DNS Seed lookup to a new thread. | |||
2011-11-27 | Add missing command-line arguments to --help/-? output | Gavin Andresen | |
2011-11-26 | Move DNS Seed lookup to a new thread. | Matt Corallo | |