Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-11 | IPv6 node support | Pieter Wuille | |
This will make bitcoin relay valid routable IPv6 addresses, and when USE_IPV6 is enabled, listen on IPv6 interfaces and attempt connections to IPv6 addresses. | |||
2012-05-09 | Clean up warnings | Pieter Wuille | |
* Use -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameters * Remove xCXXFLAGS usage in makefile.unix * Fix several recent and older sign-compare warnings | |||
2012-05-08 | Merge pull request #1075 from laanwj/2012_04_consoleui | Gregory Maxwell | |
Add UI RPC console / debug window | |||
2012-05-08 | Increase client version to 0.6.99 | Gregory Maxwell | |
2012-05-05 | Add UI RPC console / debug window | Wladimir J. van der Laan | |
2012-05-01 | add bitcoin-qt.rc to OTHER_FILES (shown in Qt Creator) | Philip Kaufmann | |
2012-05-01 | fix DEPENDPATH in the project file, as json has no include sub-dir and src ↵ | Philip Kaufmann | |
was in twice | |||
2012-04-27 | Bump version numbers for 0.6.1rc1 | Gavin Andresen | |
2012-04-17 | Move CWalletDB code to new walletdb module. | Jeff Garzik | |
In addition to standard code separation, this change opens the door to fixing several include inter-dependencies. | |||
2012-04-17 | Remove headers.h | Pieter Wuille | |
2012-04-15 | enable all warnings except invalid-offsetof, sign-compare, unused-parameter | Wladimir J. van der Laan | |
2012-04-11 | Fix build.h dependencies | Pieter Wuille | |
For Qt builds, the build.h file is moved to build/build.h. For regular builds, it is moved to obj/build.h. This allows the Qt build to be done in a different directory than the source, and without interfering with other builds. | |||
2012-04-11 | Force regeneration of build.h in qmake builds | Pieter Wuille | |
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-06 | Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs | Luke Dashjr | |
2012-04-05 | Merge pull request #1042 from gavinandresen/use_ssl_cleanup | Gavin Andresen | |
Remove USE_SSL #define | |||
2012-04-04 | Remove USE_SSL #define | Gavin Andresen | |
2012-04-05 | removed an unneeded space in bitcoin-qt.pro | Philip Kaufmann | |
2012-04-04 | Move from noui.h / ui.h to one ui_interface.h with dummy implementation for ↵ | Wladimir J. van der Laan | |
the daemon. | |||
2012-04-04 | remove dependency on serialize.h and util.h for SecureString | Wladimir J. van der Laan | |
2012-03-22 | Merge pull request #946 from luke-jr/bugfix_rm_mingw | Gavin Andresen | |
Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build | |||
2012-03-22 | Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build | Luke Dashjr | |
It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it. v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it. Use `qmake MINGW_THREAD_BUGFIX=0` to disable | |||
2012-03-22 | Merge branch 'addrman' of https://github.com/sipa/bitcoin | Gavin Andresen | |
2012-03-21 | Fix warning about deprecated unescaped backslash | Wladimir J. van der Laan | |
2012-03-16 | Fix Win32 RPC Crashes. | Matt Corallo | |
2012-03-15 | Fix windows build in windows Qt SDK | Wladimir J. van der Laan | |
2012-03-14 | Link -lrt library on Linux | Wladimir J. van der Laan | |
This is needed for linking on newer Linux distribs, see http://fedoraproject.org/wiki/UnderstandingDSOLinkChange | |||
2012-02-27 | Add mruset and use it for setInventoryKnown | Pieter Wuille | |
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-15 | Make bitcoin-qt static-link libqrcode and add it for debian pkgs. | Matt Corallo | |
2012-02-12 | Merge pull request #807 from TheBlueMatt/bip21 | Wladimir J. van der Laan | |
Add req- prefixes to comply with BIP21. | |||
2012-02-10 | Add Bitcoin-Qt test suite with some bitcoin: URL Tests to start. | Matt Corallo | |
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 | Increase client version to 0.6 | Gavin Andresen | |
2012-01-27 | Bitcoin-Qt signmessage GUI (pull request #582) | Luke Dashjr | |
2012-01-26 | Merge pull request #593 (Full URL Support in bitcoin-qt) | Wladimir J. van der Laan | |
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 | |
2011-12-25 | Add QR Code support to Win32 Gitian build. | Matt Corallo | |
2011-12-23 | Merge pull request #629 from sje397/master | Wladimir J. van der Laan | |
QR Code generation via libqrencode | |||
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-20 | Added QRCode generation functions via libqrencode. Switch on with ↵ | sje397 | |
USE_QRENCODE=1. Amended build docs for Linux and OSX, and OSX makefile. Added package 'qrencode' to gitian.yml | |||
2011-12-17 | Key import and export | Pieter Wuille | |
Introduces two new RPC calls: * dumpprivkey: retrieve the private key corresponding to an address * importprivkey: add a private key to your wallet The private key format is analoguous to the address format. It is a 51-character base58-encoded string, that includes a version number and a checksum. Includes patch by mhanne: * add optional account parameter for importprivkey, if omitted use default | |||
2011-12-17 | Add GetSecret() and GetKeys() to CKeyStore | Pieter Wuille | |
2011-12-16 | Bump version 0.5.99 (prep for pulling for version 0.6) | Gavin Andresen | |
2011-12-03 | Move -lgdi32 after -lcrypto (fixes #681). | Matt Corallo | |
2011-12-01 | Moved checkpoints out of main, to prep for using them to help prevent DoS ↵ | Gavin Andresen | |
attacks | |||
2011-11-21 | Bump version to 0.5.1 | Gavin Andresen | |
2011-11-15 | Tweak handling of boost filesystem versions | Gavin Andresen | |