Age | Commit message (Collapse) | Author |
|
BIP 0031: pong message
|
|
When sending coins, set label when selecting address that already has a label
|
|
revert to default OS theme for progressbar (fix #1071)
|
|
Enable and fix most compilation warnings
|
|
importprivkey doesn't check that it is given a private key
|
|
Show a message box when runaway exception happens
|
|
|
|
|
|
non-virtual destructor [-Wdelete-non-virtual-dtor]
|
|
|
|
|
|
class [-Wmismatched-tags]
|
|
|
|
clang
|
|
|
|
Without this, any error will segfault Bitcoin-Qt
|
|
This is more clear to users than when the program simply disappears (usually during initialization). It still logs the message to the console and debug log as well.
|
|
Database micro-optimization for "tx" network message
|
|
Update translations for bitcoin core
|
|
- Move scripts/qt to share/qt, to clean up toplevel directories
- Update english ts file which is used to source messages for Transifex
- In extract_strings_qt.py use a glob *.h *.cpp, this is safe now that the Wx UI files are removed
|
|
|
|
Open database once per "tx" message, rather than multiple times,
in the case of orphan transaction presence.
As a side effect, a now-unused CTransaction::AcceptToMemoryPool()
variant is removed.
|
|
|
|
bitcoingui.cpp
|
|
break part)
|
|
Fix #1086: add /testnet to passed datadir
|
|
|
|
stored in version.h.
Also, a minor CAddress code reformat while we're in there, fixing
some incorrect indentation.
|
|
something with the correct version.
|
|
Bug fix listtransactions from/count handling.
|
|
|
|
|
|
QR-Code dialog
|
|
|
|
NO label / coding style updates / removed an unused variable
|
|
Reference miner exists for testnet-in-a-box type situations, and as a
reference. We don't care enough about highly optimized internal
mining to keep workarounds like this.
|
|
* move PROTOCOL_VERSION to version.h
* move CLIENT_VERSION* to version.h, make available past cpp stage
* clearly separate client, network version portions of version.h
|
|
Add a pong message that is sent in reply to a ping. It echoes back a nonce
field that is now added to the ping message. Send a nonce of zero in ping
messages.
Original author: Mike Hearn @ Google
Modified Mike's change to introduce a mild form of protocol documentation in
version.h.
|
|
|
|
Toggle UI hide
|
|
Where possible, use boost::filesystem::path instead of std::string or
char* for filenames. This avoids a lot of manual string tinkering, in
favor of path::operator/.
GetDataDir is also reworked significantly, it now only keeps two cached
directory names (the network-specific data dir, and the root data dir),
which are decided through a parameter instead of pre-initialized global
variables.
Finally, remove the "upgrade from 0.1.5" case where a debug.log in the
current directory has to be removed.
|
|
Make 4th bar of connection icon green
|
|
boost::system
|
|
|
|
For Qt builds, the build.h file is moved to build/build.h. For regular
builds, it is moved to obj/build.h. This allows the Qt build to be done
in a different directory than the source, and without interfering with
other builds.
|
|
Build identification strings
|
|
Show error message instead of exception crash when unable to bind RPC port
|
|
All client version information is moved to version.cpp, which optionally
(-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated
on supporting platforms via contrib/genbuild.sh, using git describe.
The git export-subst attribute is used to put the commit id statically
in version.cpp inside generated archives, and this value is used if no
build.h is present.
The gitian descriptors are modified to use git archive instead of a
copy, to create the src/ directory in the output. This way,
src/src/version.cpp will contain the static commit id. To prevent
gitian builds from getting the "-dirty" marker in their git-describe
generated identifiers, no touching of files or running sed on the
makefile is performed anymore. This does not seem to influence
determinism.
|
|
- converted openBictoinAction to toggleHideAction
- put GUIUtil functions into a namespace instead of a class
- put window-related functions together in optionsdialog
Reasoning:
- toggle is more typical behaviour
- it's more functional
- better UX
The typical issue with toggling visibility is that when a window
is obscured by other windows but in the 'shown' state, hiding it
isn't what you want. I've added an 'isObscured' function to GUIUtil
that checks several pixels in the window to see if they are visible
on the desktop so that an obscured but shown window can be raised.
Conflicts:
src/qt/guiutil.cpp
src/qt/guiutil.h
|
|
Use scoped locks instead of CRITICAL_BLOCK
|