Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-23 | directory re-organization (keeps the old build system) | Jaromil | |
there is no internal modification of any file in this commit files are moved into directories according to established standards in sourcecode distribution; these directories contain: src - Files that are used in constructing the executable binaries, but are not installed. doc - Files in HTML and text format that document usage, quirks of the implementation, and contributor checklists. locale - Files that contain human language translation of strings used in the program contrib - Files contributed from distributions or other third party implementing scripts and auxiliary programs | |||
2011-04-20 | Better wording for transaction fee notification messagesv0.3.21 | Gavin Andresen | |
2011-04-20 | More 0.3.21 release prepv0.3.21rc | Gavin Andresen | |
Bump version number in Windows installer file Update READMEs. | |||
2011-04-20 | Update date in license.txt | Gavin Andresen | |
2011-04-20 | Monitor incoming transactions for spends by (a copy of) your own wallet | Pieter Wuille | |
2011-04-18 | getbalance '*' was ignoring minconf param. | Gavin Andresen | |
2011-04-18 | Automatically rescan after restoring wallet.dat | Pieter Wuille | |
Information about the best known chain is added to wallet.dat. If this information does not match the data in blkindex.dat, a rescan is automatically performed, starting from the the last known block. When upgrading from a wallet which does not have this information, no rescan is done automatically. | |||
2011-04-18 | Merge branch 'upnpfix' of https://github.com/TheBlueMatt/bitcoin | Gavin Andresen | |
2011-04-16 | Fix for #156: UPnP segfault when no valid UPnP IGDs are found. | Dan Helfman | |
2011-04-15 | Merge branch 'master' of https://github.com/gjs278/bitcoin | Gavin Andresen | |
2011-04-15 | Merge branch 'localefix' | Gavin Andresen | |
2011-04-15 | Set time locale to POSIX in rfc1123Time so weekday/months in http responses ↵ | Gavin Andresen | |
are correct. | |||
2011-04-15 | Merge branch 'http-version' of https://github.com/jgarzik/bitcoin | Gavin Andresen | |
2011-04-15 | Send/return full bitcoin version string in Server and User-Agent HTTP headers | Jeff Garzik | |
2011-04-15 | Ensure version number->string conversion is consistent | Jeff Garzik | |
2011-04-15 | Exit when no UPnP router found and fUseUPnP gets set to 0. | Matt Corallo | |
2011-04-13 | build: add note for Snow Leopard users and fix typos in linking instructions | Dan Loewenherz | |
2011-04-13 | New checkpoint at block 118,000 | Gavin Andresen | |
2011-04-12 | pidfile support for daemon | gjs278 | |
2011-04-12 | Merge branch 'listimmature' of /Users/gavin/src/gavin_btc | Gavin Andresen | |
2011-04-12 | Merge branch 'spentpertxout' of https://github.com/sipa/bitcoin | Gavin Andresen | |
2011-04-12 | Bugfix for spentpertxout: slow startup | Pieter Wuille | |
When starting the client, ReacceptWalletTransaction didn't skip spent transactions in its loop, and processed all old spent transactions again. | |||
2011-04-12 | Merge branch 'upnp' of https://github.com/TheBlueMatt/bitcoin | Gavin Andresen | |
2011-04-12 | Merge branch 'spentpertxout' of https://github.com/sipa/bitcoin | Gavin Andresen | |
2011-04-12 | select transaction outputs separately | Pieter Wuille | |
Update to SelectCoins and CreateTransaction to select source transaction outputs separately instead of per whole transaction. | |||
2011-04-12 | Spent per txout | Pieter Wuille | |
Change some internal data structures to keep track of spentness of each wallet transaction output separately, to support partially-spent transactions: * an update to the data structures (vfSpent in CWalletTx instead of fSpent) * a backward-compatible update to the wallet disk format. Old clients reading back an updated wallet will ignore partially spent transactions when creating new ones, and may report a wrong balance, though. * some helper functions (CWalletTx: IsSpent, MarkSpent, MarkDirty to reset cached values, GetAvailableCredit which only counts unredeemed outputs) | |||
2011-04-08 | disable -daemon on windows; bitcoind forks only with -daemon set | tcatm | |
[added setsid() call to ui.cpp, to regain consistency with init.cpp -jgarzik] | |||
2011-04-08 | rfc1123Time: increase buffer size for time string | Jeff Garzik | |
Make sure we can accomodate all possibilities. | |||
2011-04-05 | Report immature coinbase transactions in listtransactions | Gavin Andresen | |
Report coin generation transactions as 'category':'immature' until they have 120 confirmations (when they are reported as 'category':'generate', as before). If the block they are in is not part of the main chain (you lost a 'block race'), then they are reported as 'category':'orphan' (with 0 confirmations). | |||
2011-04-05 | Fixed issue 76 -- RPC error where addresses from addressbook's sending tab ↵ | Eric Swanson | |
appear in listaccounts | |||
2011-04-05 | Merge branch 'deadlock-fixes' of https://github.com/jgarzik/bitcoin | Gavin Andresen | |
2011-04-05 | RPC sendmany must acquire cs_main lock | Jeff Garzik | |
2011-04-04 | Fix deadlocks in setaccount, sendfrom RPC calls | Jeff Garzik | |
SendMoney*() now requires caller to acquire cs_main. GetAccountAddress() now requires caller to acquire cs_main, cs_mapWallet. Ordering is intended to match these two callchains[1]: 1. CRITICAL_BLOCK(cs_main) ProcessMessage(pfrom, strCommand, vMsg) AddToWalletIfMine() AddToWallet(wtx) CRITICAL_BLOCK(cs_mapWallet) 2. CRITICAL_BLOCK(cs_main) ProcessMessage(pfrom, strCommand, vMsg) AddToWalletIfMine() AddToWallet(wtx) CRITICAL_BLOCK(cs_mapWallet) walletdb.WriteName(PubKeyToAddress(vchDefaultKey), "") CRITICAL_BLOCK(cs_mapAddressBook) Spotted by ArtForz. Additional deadlock fixes by Gavin. [1] http://www.bitcoin.org/smf/index.php?topic=4904.msg71897#msg71897 | |||
2011-04-01 | Update DNS seed list | Jeff Garzik | |
2011-03-30 | Allow UPnP mapping when USE_UPNP is defined and miniupnpc is installed at ↵ | Matt Corallo | |
build time(statically linked). Thanks joepie91 for the translation of the new copyright notices into Dutch. Thanks sipa for the translation of the new copyright notices into French. Thanks megu for the translation of the new copyright notices into Spanish. Thanks justmoon/Blitzboom for the translation of the new copyright notices into German. Thanks Joozero for the translation of the new copyright notices into Italian. Remaining translations were provided by Google Translate. | |||
2011-03-25 | allow coredumps by not catching SIGSEGV | tcatm | |
2011-03-23 | Merge branch 'master' of git://github.com/bitcoin/bitcoin | Jeff Garzik | |
2011-03-23 | [locale] Regenerate es, nl binary message catalogs | Jeff Garzik | |
2011-03-23 | Merge branch 'master' of https://github.com/smola/bitcoin into tmp | Jeff Garzik | |
2011-03-23 | Merge branch 'dutchloc' of https://github.com/sipa/bitcoin into tmp | Jeff Garzik | |
2011-03-23 | catch SIGINT, SIGHUP and SIGSEGV and shutdown cleanly | tcatm | |
2011-03-21 | daemon-mode: add sleep() loop to prevent defunct child process, call ↵ | tcatm | |
setsid() in child | |||
2011-03-19 | Updated dutch translation | Sven Slootweg | |
2011-03-17 | Update copyright in About box from 2010 to 2011 | Gavin Andresen | |
2011-03-16 | Update Spanish translation. | Santiago M. Mola | |
2011-03-16 | Fix -logtimestamps to only print time prefix once per output line | Jeff Garzik | |
Incorporate BlueMatt's fix to only timestamp upon new line, and move -logtimestamp checking outside OutputDebugPrintF() to better future-proof it. | |||
2011-03-14 | Merge branch 'shy' | Gavin Andresen | |
2011-03-13 | Merge branch 'dns-seed' of https://github.com/jgarzik/bitcoin | Gavin Andresen | |
2011-03-13 | Merge branch 'log-timestamp' of https://github.com/TheBlueMatt/bitcoin | Gavin Andresen | |
2011-03-13 | Merge branch 'limitfree' of /Users/gavin/src/integration_btc | Gavin Andresen | |