aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-07-29Full support for other units, add configuration option for default unit ↵Wladimir J. van der Laan
(used when displaying amounts)
2011-07-27Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
Conflicts: src/script.cpp
2011-07-27normalize SIGNAL/SLOT signatures ↵Wladimir J. van der Laan
(http://marcmutz.wordpress.com/effective-qt/prefer-to-use-normalised-signalslot-signatures/)
2011-07-27also accept numbers without dot/decimals for parsing, fixes transaction ↵Wladimir J. van der Laan
filter row
2011-07-26CAddrDB::LoadAddresses: properly initialize CAddressJeff Garzik
Fixes issue #424
2011-07-26Bugfix: don't overuse limited ExtractAddressPieter Wuille
ExtractAddress was called with the keystore as argument in RPC and UI, limiting results to own keys. This caused empty "address" fields.
2011-07-26show amounts in <b>bold</b> in confirmation dialogWladimir J. van der Laan
2011-07-26make SetHash160 return a value (as specified in the function signature)Wladimir J. van der Laan
2011-07-26make SetHash160 return a value (as specified in the function signature)Wladimir J. van der Laan
2011-07-26Merge remote branch 'upstream/master'Wladimir J. van der Laan
Conflicts: src/bitcoinrpc.cpp
2011-07-26Reset unit to default when clearing the field, to prevent confusionWladimir J. van der Laan
2011-07-26refuse to format nor parse invalid unitsWladimir J. van der Laan
2011-07-26allow multiple units in bitcoin amount widget (for example, for sending) ↵Wladimir J. van der Laan
using a combobox
2011-07-26Negative transaction color changed to red (was grey due to mistake)Wladimir J. van der Laan
2011-07-25fix unit names (μBTC)Wladimir J. van der Laan
2011-07-25preparations for multiple unit (uBTC, mBTC, BTC) support, fix amount entry issueWladimir J. van der Laan
2011-07-25put color constants in guiconstants.hWladimir J. van der Laan
2011-07-24Merge pull request #403 from sipa/cbitcoinaddressJeff Garzik
keys indexed by address + introduced CBitcoinaddress
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-24Fix for small change outputsPieter Wuille
With the separation of CENT and MIN_TX_FEE, it is now reasonable to create change outputs between 0.01 and 0.0005, as these are spendable according to the policy, even though they require a fee to be paid. Also, when enough fee was already present, everything can go into a change output, without further increasing the fee.
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 bug with accessing vchData[0] when vchData is empty. Abraham Jewowich
Fix typo in CBase58Data::CompareTo
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-17split off CBase58Data from CBitcoinAddressPieter Wuille
Split off features unrelated to addresses from CBitcoinAddress to CBase58Data, so they can be reused.
2011-07-17Use CBitcoinAddress instead of string/uint160Pieter Wuille
Instead of conversion functions between pubkey/uint160/address in base58.h, have a fully fledged class CBitcoinAddress (CAddress was already taken) to represent addresses.
2011-07-17get rid of mapPubKeysPieter Wuille
Make CKeyStore's interface work on uint160's instead of pubkeys, so no separate global mapPubKeys is necessary anymore.
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