aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-07-24better exit iconWladimir J. van der Laan
2011-07-24make all tab icons blue/gray for more consistencyxWladimir J. van der Laan
2011-07-24improve tooltip textsWladimir J. van der Laan
2011-07-24add windows program (.exe) iconWladimir J. van der Laan
2011-07-24Merge pull request #9 from celil-kj/masterWladimir J. van der Laan
allow decimals such as .05 for amount of bitcoins to send
2011-07-22Allow ammount field to be empty so that one can specify .05 instead ofCelil
having to type the leading zero as in 0.05
2011-07-22Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-07-22Implement range... transaction filterWladimir J. van der Laan
2011-07-22fix clear() (clear red/invalid status)Wladimir J. van der Laan
2011-07-21Actually use mapAlreadyAskedFor.Matt Corallo
Previously, mapAlreadyAskedFor was read from, but never added to. The original intent was to use mapAlreadyAskedFor to keep track of the time an item was requested and "Each retry is 2 minutes after the last". This implements that intent.
2011-07-18one remove/delete icon is enough and the red minus better matches the add iconWladimir J. van der Laan
2011-07-18Merge branch 'notebook'Wladimir J. van der Laan
2011-07-18move buttons to bottom of send coins tab, outside of scroll areaWladimir J. van der Laan
2011-07-18windows build fixWladimir J. van der Laan
2011-07-18Fix "Last received block was generated Up to date"Wladimir J. van der Laan
2011-07-17put sendcoins entries in scroll area, so that window does not become bigger ↵Wladimir J. van der Laan
than screen with many recipients
2011-07-17show rotating spinner when block download out of date, tick otherwiseWladimir J. van der Laan
2011-07-17make initial block download reporting somewhat better by tracking version ↵Wladimir J. van der Laan
responses
2011-07-16add missing iconWladimir J. van der Laan
2011-07-16Revert "Now that send coins / receive coins etc are tabs, remove them from ↵Wladimir J. van der Laan
menu, and reorganize menu bar" This reverts commit ea37fb9187195d746a4b8a84da5cb6bd9e0e4aab.
2011-07-16add sendmany supportWladimir J. van der Laan
2011-07-15Added crypter to makefile.vc.Eric Hosmer
2011-07-15Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-07-15Merge 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-15Add call to request unconfirmed balanceWladimir J. van der Laan
2011-07-15Now that send coins / receive coins etc are tabs, remove them from menu, and ↵Wladimir J. van der Laan
reorganize menu bar
2011-07-14Fix error when export is cancelled without specifying a filename.Celil
2011-07-14solve warnings at startupWladimir J. van der Laan
2011-07-14Fix bad return values in LoadWallet.Matt Corallo
2011-07-14Merge pull request #412 from sgimenez/db-transactionsPieter Wuille
Single DB transactions
2011-07-14Single DB transaction for addresses from DNS seedsStéphane Gimenez
2011-07-14Fix Build in GetReservedKey() in wallet.cppMatt Corallo
2011-07-14Single DB transaction for all addresses in a messagePatrick Varilly
Cuts disk activity at startup immensely
2011-07-14Generate Warning when using default key.Matt Corallo
2011-07-14Fix crashes when a wallet is locked and GetReservedKey() is calledMatt Corallo
2011-07-13Merge pull request #406 from muggenhor/warning-fixesJeff Garzik
Warning fixes
2011-07-13Merge pull request #405 from sipa/syncdefaultJeff Garzik
Bugfix: add autogenerated addresses to address book
2011-07-13fix warning: control reaches end of non-void function [-Wreturn-type]Giel van Schijndel
Signed-off-by: Giel van Schijndel <me@mortis.eu>
2011-07-13fix 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-13Fix makefile.linux-mingwMatt Corallo
2011-07-13Bugfix: add autogenerated addresses to address bookPieter Wuille
2011-07-13Bump version to 0.3.25Jeff Garzik
Yes, we might release as v0.4, but let's just do a simple increment for now.
2011-07-13Update CWallet::LoadWallet for proper return type.Jeff Garzik
2011-07-13fix 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-13fix warning: unused variable 'X' [-Wunused-variable]Giel van Schijndel
Remove several unused variables. Signed-off-by: Giel van Schijndel <me@mortis.eu>
2011-07-13fix 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-13fix 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-13fix 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-13fix 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-13fix 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>