Age | Commit message (Collapse) | Author |
|
- Fixes issues with copy/pasting from web or html emails (#1325)
|
|
Update Header Licenses
|
|
remove strncasecmp() + strnicmp() calls use boost::algorithm::istarts_with()
|
|
Finer-grained UI updates, move UI interface to boost::signals
|
|
|
|
- No longer invalidates selection model, thus retains selection on address book changes
- Fixes selection of new address when added
|
|
- Signals now go directly from the core to WalletModel/ClientModel.
- WalletModel subscribes to signals on CWallet: Prepares for multi-wallet support, by no longer assuming an implicit global wallet.
- Gets rid of noui.cpp, the few lines that were left are merged into init.cpp
- Rename wxXXX message flags to MF_XXX, to make them UI indifferent.
- ThreadSafeMessageBox no longer returns the value `4` which was never used, converted to void.
|
|
Gets rid of `MainFrameRepaint` in favor of specific update functions that tell the UI exactly what changed.
This improves the efficiency of various handlers. Also fixes problems with mined transactions not showing up until restart.
The following notifications were added:
- `NotifyBlocksChanged`: Block chain changed
- `NotifyKeyStoreStatusChanged`: Wallet status (encrypted, locked) changed.
- `NotifyAddressBookChanged`: Address book entry changed.
- `NotifyTransactionChanged`: Wallet transaction added, removed or updated.
- `NotifyNumConnectionsChanged`: Number of connections changed.
- `NotifyAlertChanged`: New, updated or cancelled alert. As this finally makes it possible for the UI to know when a new alert arrived, it can be shown as OS notification.
These notifications could also be useful for RPC clients. However, currently, they are ignored in bitcoind (in noui.cpp).
Also brings back polling with timer for numBlocks in ClientModel. This value updates so frequently during initial download that the number of signals clogs the UI thread and causes heavy CPU usage. And after initial block download, the value changes so rarely that a delay of half a second until the UI updates is unnoticable.
|
|
translation updates / string updates
|
|
GUI: add an icon for Debug logfile -> Open in the RPC console
|
|
Get rid of snprintf (except one) with fixed buffers, shorten code
|
|
boost::algorithm::istarts_with() / do not call ipcInit() on Mac and Windows as this is unneeded currently
|
|
Default to DB_TXN_WRITE_NOSYNC for all transactional operations
|
|
Shared code for wallet lock help and check
|
|
make CheckDiskSpace() use 50 * 1024 * 1024 Bytes
|
|
change strings to Bitcoin (uppercase), where it is used as a noun and up...
|
|
Replace debug window icon with LGPL-licensed one (fixes #1348)
|
|
|
|
* This is safer than DB_TXN_NOSYNC, and does not appear to impact
performance.
* Applying this to the dbenv is necessary to avoid many fdatasync(2)
calls on db 5.x
* We carefully and thoroughly flush databases upon shutdown and
other important events already.
|
|
|
|
strings to use "Qt" (and not qt or QT) / update initialisation of notificator to use qApp->applicationName() instead of a static string
|
|
JSON-RPC: remove 'getblocknumber' deprecated RPC
|
|
|
|
I originally created a pull to replace the "COPYING" in crypter.cpp and
crypter.h, but it turned out that COPYING was actually the correct
file.
|
|
comment in rpcconsole.h
|
|
Restore overview page (put transactions back within frame)
|
|
- Also, change "(out of sync)" to only red, instead of red and bold, which a bit more subtle
- Move label stylesheets to xml
|
|
RPC 'getblockcount' should be used instead.
|
|
Old log message:
storing orphan tx df2244f6bc
New log message:
storing orphan tx df2244f6bc (mapsz 51)
Also, trim a few trailing whitespace in main.cpp.
|
|
Report how long DBFlush took.
|
|
add missing "#define strncasecmp _strnicmp" in init.cpp"
This reverts commit f4ac41806af5766199a7d526a7becbcb8a0f5ab3.
Reason: breaks build.
|
|
Win32: use _strnicmp (ISO C++) instead of deprecated strnicmp (POSIX)
|
|
|
|
missing "#define strncasecmp _strnicmp" in init.cpp
|
|
GUI: add 2 labels to the overviewpage that display Wallet and Transaction status
|
|
(obsolete or current) / cleanup overviewpage XML ui-file
|
|
Add icon for debug window
|
|
|
|
Add build directory to .gitignore, so that it's not tracked.
|
|
Corrected grammar. As per Principle Of Least Surprise.
|
|
Add /bin/sh to bitcoin-qt.pro - as some filesystems don't have the execute flag.
|
|
|
|
|
|
|
|
Fix typo. libarcode => libqrcode
|
|
fix RenameOver() and FileCommit() functions, to not generate compilation errors
|
|
|
|
[FIX] Always check return values of TxnBegin() and TxnCommit()
|
|
Remove dead code: CTxDB::EraseBlockIndex(), CBlockIndex::EraseBlockFromDisk()
|
|
Replace BDB-managed addr.dat with bitcoin-managed peers.dat
|