Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-15 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-07-15 | move README.md out of the way for now | Wladimir J. van der Laan | |
2011-07-15 | Merge remote-tracking branch 'satoshi/qtui' | Wladimir J. van der Laan | |
Conflicts (resolved by copying files from remote branch): .gitignore src/cryptopp/cpu.cpp src/cryptopp/cpu.h src/cryptopp/cryptlib.h src/cryptopp/iterhash.h src/cryptopp/misc.h src/cryptopp/secblock.h src/cryptopp/sha.cpp src/cryptopp/sha.h src/cryptopp/smartptr.h src/json/json_spirit_reader.cpp src/json/json_spirit_value.cpp src/json/json_spirit_writer.cpp | |||
2011-07-15 | Add call to request unconfirmed balance | Wladimir J. van der Laan | |
2011-07-15 | fix quoting | Wladimir J. van der Laan | |
2011-07-15 | Now that send coins / receive coins etc are tabs, remove them from menu, and ↵ | Wladimir J. van der Laan | |
reorganize menu bar | |||
2011-07-15 | Merge pull request #8 from celil-kj/master | Wladimir J. van der Laan | |
fix error when cancelling export | |||
2011-07-14 | Merge pull request #414 from spiechu/polish-translation | Jeff Garzik | |
added polish wallet encryption messages | |||
2011-07-14 | Fix error when export is cancelled without specifying a filename. | Celil | |
2011-07-14 | solve warnings at startup | Wladimir J. van der Laan | |
2011-07-14 | added polish wallet encryption messages | Dawid Spiechowicz | |
2011-07-14 | Merge pull request #413 from TheBlueMatt/loadwalletret | Jeff Garzik | |
Fix bad return values in LoadWallet. | |||
2011-07-14 | Fix bad return values in LoadWallet. | Matt Corallo | |
2011-07-14 | Merge pull request #412 from sgimenez/db-transactions | Pieter Wuille | |
Single DB transactions | |||
2011-07-14 | Single DB transaction for addresses from DNS seeds | Stéphane Gimenez | |
2011-07-13 | Merge pull request #411 from TheBlueMatt/master | Gavin Andresen | |
Fix Build in GetReservedKey() in wallet.cpp | |||
2011-07-14 | Fix Build in GetReservedKey() in wallet.cpp | Matt Corallo | |
2011-07-13 | Merge pull request #410 from TheBlueMatt/master | Gavin Andresen | |
Generate Warning when using default key. | |||
2011-07-14 | Single DB transaction for all addresses in a message | Patrick Varilly | |
Cuts disk activity at startup immensely | |||
2011-07-14 | Generate Warning when using default key. | Matt Corallo | |
2011-07-13 | Merge pull request #409 from TheBlueMatt/master | Jeff Garzik | |
Fix crashes when a wallet is locked and GetReservedKey() is called | |||
2011-07-14 | Fix crashes when a wallet is locked and GetReservedKey() is called | Matt Corallo | |
2011-07-13 | Merge pull request #406 from muggenhor/warning-fixes | Jeff Garzik | |
Warning fixes | |||
2011-07-13 | Merge pull request #405 from sipa/syncdefault | Jeff Garzik | |
Bugfix: add autogenerated addresses to address book | |||
2011-07-13 | fix warning: control reaches end of non-void function [-Wreturn-type] | Giel van Schijndel | |
Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: variable ‘nMinDepth’ set but not used ↵ | Giel van Schijndel | |
[-Wunused-but-set-variable] Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | Merge pull request #404 from TheBlueMatt/newenc | Pieter Wuille | |
Fix makefile.linux-mingw | |||
2011-07-13 | Fix makefile.linux-mingw | Matt Corallo | |
2011-07-13 | Bugfix: add autogenerated addresses to address book | Pieter Wuille | |
2011-07-13 | Update mac build (alkor on forums) | Wladimir J. van der Laan | |
2011-07-13 | doc/README: word wrap into something readable | Jeff Garzik | |
2011-07-13 | Bump version to 0.3.25 | Jeff Garzik | |
Yes, we might release as v0.4, but let's just do a simple increment for now. | |||
2011-07-13 | Update CWallet::LoadWallet for proper return type. | Jeff Garzik | |
2011-07-12 | Merge pull request #399 from muggenhor/warning-fixes | Jeff Garzik | |
Warning fixes | |||
2011-07-13 | fix warning: unused function 'SigIllHandlerSSE2' [-Wunused-function] | Giel van Schijndel | |
Only declare & define SigIllHandlerSSE2 when its used. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: unused variable 'X' [-Wunused-variable] | Giel van Schijndel | |
Remove several unused variables. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: X enumeration values not handled in switch [-Wswitch-enum] | Giel van Schijndel | |
Add default cases to opcode switches to assert that they should never occur. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: comparison of unsigned expression < 0 is always false ↵ | Giel van Schijndel | |
[-Wtautological-compare] Don't check for a negative parameter count, because not only will it never happen, it doesn't make any sense either. Invalid sockets (as returned by socket(2)) are always exactly -1 (not just negative as negative file descriptors are technically not prohibited by POSIX) on POSIX systems. Since we store them in SOCKET (unsigned int), however, that really is ~0U (or MAX_UINT) which happens to be what INVALID_SOCKET is already defined to, so an additional check for being negative is not only unnecessary (unsigned integers aren't *ever* negative) its redundant as well (the INVALID_SOCKET comparison is enough). Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warnings: using the result of an assignment as a condition without ↵ | Giel van Schijndel | |
parentheses [-Wparentheses] Don't unnecessarily assign to variables within the *boolean* expression of a conditional. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warnings: expression result unused [-Wunused-value] | Giel van Schijndel | |
In the assert()s take advantage of the fact that string constants ("string") are effectively of type 'const char []', which when used in an expression yield a non-NULL pointer. An assertion that should always fail can thus be formulated as: assert(!"fail); An assertion where a text message should be added to the expression can be written as such: assert("message" && expression); Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning on 64bit systems: cast to pointer from integer of different size ↵ | Giel van Schijndel | |
[-Wint-to-pointer-cast] Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-12 | Update makefile.linux-mingw to work with crypter and UPnP fix. | Matt Corallo | |
2011-07-12 | Merge pull request #381 from TheBlueMatt/nminversion | Jeff Garzik | |
Add minversion to wallet. | |||
2011-07-12 | Merge pull request #402 from jayschwa/hirez-icon | Jeff Garzik | |
High resolution Windows icon | |||
2011-07-12 | Merge pull request #396 from jayschwa/nsis-branding | Jeff Garzik | |
Add bitcoin.org logos/branding to NSIS installer. | |||
2011-07-12 | Merge pull request #352 from TheBlueMatt/newenc | Jeff Garzik | |
Wallet Private Key Encryption (on CWallet) | |||
2011-07-12 | Increase resolution of Windows icon. | Jay Weisskopf | |
The .ico file has changed in the following ways: * Added 64x64 layer (max size for "Classic Mode"). * Added 256x256 layer (max size for Vista and 7). * Removed copies with no alpha channel: * Display depths lower than 32-bits are rare nowadays. * 8-bit alpha channels in icons has been supported since XP. * If the display depth is lowered, they look no better than the downsampled versions that Windows automatically generates. Tested various sizes on both XP and Win 7. It looks fine (unchanged) on XP and downright sexy on Win 7. | |||
2011-07-13 | Make an invalid addrIncoming so that old clients crash. | Matt Corallo | |
This prevents old clients from opening, and thus corrupting or otherwise causing harm to encrypted wallets. | |||
2011-07-13 | Use DB Transactions when encrypting wallet. | Matt Corallo | |
This speeds up the encryption process significantly. | |||
2011-07-13 | Do not use obsolete CPrivKey for passing keys around | Pieter Wuille | |