aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* security safeguards,v0.3.2Gavin Andresen2010-07-191-3/+16
| | | | | limited addr messages -- version 0.3.2
* version 0.3.1 rc1v0.3.1rc1Gavin Andresen2010-07-191-2/+5
|
* Fix CRLFGavin Andresen2010-07-141-3124/+3124
|
* Laszlo's fix to make generate threads idle priority on Linux,s_nakamoto2010-07-081-16/+26
| | | | replaced some wxBase dependencies: wxMutex, wxFileExists, wxStandardPaths, wxGetLocalTimeMillis
* reduced max outbound connections from 15 to 8 --version 0.3 rc4s_nakamoto2010-07-021-0/+2
|
* version 0.3 rc2s_nakamoto2010-06-261-1/+1
|
* re-enable hiding taskbar button on minimize on linux, though it doesn't work ↵s_nakamoto2010-06-221-1/+1
| | | | cleanly
* fixed colors on ubuntu lucid,s_nakamoto2010-06-211-1/+30
| | | | | | | | | enabled -O2 in makefile.unix, boost removed -mt from their library names in 1.40, updated bitcoin icon, hashmeter, generated and hashmeter log entries -- version 0.2.13
* use seed nodes as fallback if IRC fails or with TORs_nakamoto2010-06-181-11/+19
| | | | -- version 0.2.12
* more addr message error checkings_nakamoto2010-06-151-1/+4
| | | | -- version 0.2.11
* automatically change displayed address whenever it receives anything,s_nakamoto2010-06-101-32/+77
| | | | | | | | added help and -? for daemon command line rpc commands, only relay addr messages to 5 random nodes to save bandwidth, started setting wtx.fFromMe flag, trickle out tx inventory messages to protect privacy -- version 0.2.10
* better prevention of inventory relaying during initial download,s_nakamoto2010-05-261-26/+50
| | | | | | | message checksum between nodes with 0.2.9 or higher, optimization level up from -O0 to -O2, rpc functions: setlabel, getlabel, getaddressesbylabel, getreceivedbyaddress, getreceivedbylabel, listreceivedbyaddress, listreceivedbylabel -- version 0.2.9
* Mac OS build fixes by laszlos_nakamoto2010-05-191-3/+3
| | | | -- version 0.2.8
* GUI-less build target bitcoind that links to wxBase and shouldn't need GTK,s_nakamoto2010-02-251-1/+3
| | | | | | split init and shutdown from ui.cpp into init.cpp, support wxUSE_GUI=0 -- version 0.2.7
* run as daemon without GUI,s_nakamoto2010-02-231-8/+7
| | | | | | | hooked wxApp::Initialize to ignore gtk-init-check failure if no GUI, fork to daemonize, rpc getinfo, getconnectioncount, getbalance, getgenerate, setgenerate, -- version 0.2.6
* transaction filter tabs instead of view->show generated s_nakamoto2010-02-211-1/+3
| | | | -- version 0.2.5
* Address Book with tabs instead of separate Your Address book, s_nakamoto2010-02-201-55/+57
| | | | | | | | | | with live update of default address in main window, New... button on main window for creating new receiving address, made receiving address labels more visible, ask user before paying transaction fee, when sending to bitcoin address also use a bitcoin address for the change, added some event.Skip() to fix UI glitches -- version 0.2.4
* all builds are now with wxWidgets-2.9.0, we are now using UTF-8, s_nakamoto2010-02-171-22/+8
| | | | | added support for language translation file locale/<lang>/LC_MESSAGES/bitcoin.mo -- version 0.2.2
* strip out unfinished product, review and market stuff, s_nakamoto2010-02-151-22/+2
| | | | enable _() instead of wxT() in uiproject.fbp so it uses wxGetTranslation for the wxFormBuilder generated part of the UI
* Workaround for bug on wxWidgets 2.9.0 Ubuntu 9.10 64-bit where first ↵s_nakamoto2010-02-141-6/+5
| | | | character of the hidden columns were displayed so status column had three numbers overprinted. Fixed by adding a leading space to the hidden columns. 64-bit compile with wxWidgets 2.9.0 seems to be fully working normally now.
* command line and JSON-RPC first draft, requires Boost 1.35 or higher for ↵s_nakamoto2010-02-121-46/+105
| | | | | | | | | boost::asio, added SetBitcoinAddress and GetBitcoinAddress methods on CScript, critsect interlocks around mapAddressBook, added some random delays in tx broadcast to improve privacy, now compiles with MSVC 8.0
* update fSpent flag on wallet transactions if they're seen spent in case copy ↵s_nakamoto2010-02-031-7/+60
| | | | | | | | | of wallet.dat was used elsewhere or restored from backup, better error dialog box if try to spend already spent coins, got rid of unused notebook with only one tab on main dialog, nicer looking About dialog, resize About dialog better on linux
* simplify AddAddress, s_nakamoto2010-01-281-2/+6
| | | | | | readcompactsize limit, fixed a 64-bit compile error in serialize.h, change status "# blocks" to "# confirmations" and widen the column.
* filter out duplicate getblocks and don't relay inv messages during initial ↵s_nakamoto2009-12-141-15/+10
| | | | block download -- 0.2 rc2
* retry IRC if name in use, s_nakamoto2009-12-111-4/+17
| | | | | | resize to fit ubuntu's giant default font, scroll debug.log, pause gen during initial block download
* miscs_nakamoto2009-12-061-9/+5
|
* fix transaction fee bug in CreateTransaction, higher size cutoff for free ↵s_nakamoto2009-12-061-10/+8
| | | | transactions in GetMinFee
* minor fix to batched initial download in case requester has more than 500 ↵s_nakamoto2009-11-241-2/+2
| | | | block non-main branch
* bugfix Db::open/close and zombie sockets bugs fix double-close of socket handle,s_nakamoto2009-11-181-31/+56
| | | | | | | | keep databases open, close db cursors, initial block download in batches of 500 blocks, fix misc warnings, subver linux-test8
* monitor ThreadSocketHandler and terminate and restart if hung, convert ↵s_nakamoto2009-11-131-24/+120
| | | | _beginthread to CreateThread wrapper, disconnect inactive connections, ping, break up long messages to speed up initial download, better priorities for initiating connections, track how many nodes have requested our blocks and transactions, status #/offline and warning message on unsent blocks, minimize on close as separate option -- linux-test5
* Get local host IP on Linux, Shutdown() a little cleaner -- linux-0.1.6-test1 ↵s_nakamoto2009-11-081-2/+2
| | | | waypoint
* UI tweaks, use BindListenPort to detect instance already running, ↵s_nakamoto2009-11-071-4/+4
| | | | setsockopt(SO_REUSEADDR) so can bind during TIME_WAIT after exit and restart
* UIThreadCall, ThreadSafeMessageBoxs_nakamoto2009-11-061-1/+1
|
* got rid of CheckForShutdown, replaced some thread-unsafe wxWidgets calls, ↵s_nakamoto2009-11-061-27/+40
| | | | Linux fixes, socket send MSG_NOSIGNAL, bind INADDR_ANY, works reliably on Linux now except if wxMessageBox is used in a thread other than the GUI thread
* unix build merged in, bitmap resources from xpm instead of rc, better addr ↵s_nakamoto2009-11-051-24/+44
| | | | relay, better selection of addrs by time last seen for faster connect
* move debug.log and db.log to data dir, portable GetDataDir, optimize ↵s_nakamoto2009-11-011-43/+7
| | | | GetBalance, fix repaint bogdown, -addnode and -? switches
* Linux alternatives for the Windows headers and PerformanceCounter. Some ↵sirius-m2009-10-311-1/+1
| | | | typedefs and #defines for the Linux build. Fixed GetDataDir.
* make CheckDiskSpace portables_nakamoto2009-10-301-10/+4
|
* better wallet.dat flush, consolidated QueryPerformanceCounter, PRI64d printf ↵s_nakamoto2009-10-291-4/+2
| | | | portability
* addr relaying fixes, proxy option and privacy patches, detect connect to ↵s_nakamoto2009-10-291-14/+57
| | | | self, non-final tx locktime changes, fix hide unconfirmed generated
* fix display of new generated coins, fix assertion in bitcoinminers_nakamoto2009-10-251-23/+22
|
* flush wallet.dat, multi-proc, reorg options, revert to startup folder shortcuts_nakamoto2009-10-211-39/+113
|
* tray icon + ask before closingsirius-m2009-09-241-3/+0
|
* First commitsirius-m2009-08-301-0/+2692