Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-15 | fix warnings: delete called on 'XX' that has virtual functions but ↵ | Wladimir J. van der Laan | |
non-virtual destructor [-Wdelete-non-virtual-dtor] | |||
2012-04-15 | fix warnings: unused variable 'XX' [-Wunused-variable] | Wladimir J. van der Laan | |
2012-04-15 | fix warnings: enumeration values 'XX' not handled in switch [-Wswitch-enum] | Wladimir J. van der Laan | |
2012-04-15 | fix warnings: 'XX' defined as a struct here but previously declared as a ↵ | Wladimir J. van der Laan | |
class [-Wmismatched-tags] | |||
2012-04-15 | fix warnings: array subscript is of type 'char' [-Wchar-subscripts] | Wladimir J. van der Laan | |
2012-04-15 | work around issue in boost::program_options that prevents from compiling in ↵ | Wladimir J. van der Laan | |
clang | |||
2012-04-15 | enable all warnings except invalid-offsetof, sign-compare, unused-parameter | Wladimir J. van der Laan | |
2012-04-14 | Merge pull request #1093 from jgarzik/tx-opt | Jeff Garzik | |
Database micro-optimization for "tx" network message | |||
2012-04-13 | Merge pull request #1089 from laanwj/2012_04_translationupdate | Wladimir J. van der Laan | |
Update translations for bitcoin core | |||
2012-04-14 | Update translations for bitcoin core | Wladimir J. van der Laan | |
- 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 | |||
2012-04-14 | Do not show green tick unless all known blocks are downloaded (fixes #921) | Wladimir J. van der Laan | |
2012-04-13 | Database micro-optimization for "tx" network message | Jeff Garzik | |
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. | |||
2012-04-13 | Add missing tooltip and key shortcut in settings dialog (#1088 without line ↵ | Wladimir J. van der Laan | |
break part) | |||
2012-04-12 | Merge pull request #1087 from sipa/fix_1086 | Gavin Andresen | |
Fix #1086: add /testnet to passed datadir | |||
2012-04-13 | Fix #1086: add /testnet to passed datadir | Pieter Wuille | |
2012-04-12 | Merge pull request #1041 from gavinandresen/listtransactionsfix | Gavin Andresen | |
Bug fix listtransactions from/count handling. | |||
2012-04-12 | make text in about box selectable (fixes #1055) | Wladimir J. van der Laan | |
2012-04-12 | enable wordWrap on lblQRCode / small code comment change | Philip Kaufmann | |
2012-04-12 | limit length of generated URI to 255 chars to prevent a DoS against the ↵ | Philip Kaufmann | |
QR-Code dialog | |||
2012-04-12 | updated to reflect pull-request suggestions / renamed some GUI elements | Philip Kaufmann | |
2012-04-12 | fixed amount part of URI in QR-Codes / removed (no label) string if we have ↵ | Philip Kaufmann | |
NO label / coding style updates / removed an unused variable | |||
2012-04-12 | Remove obsolete Win32 AffinityBugWorkaround() | Jeff Garzik | |
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. | |||
2012-04-12 | Fix OSX build errors. | Gavin Andresen | |
2012-04-11 | Merge pull request #855 from sje397/ToggleHide | Wladimir J. van der Laan | |
Toggle UI hide | |||
2012-04-11 | Use filesystem::path instead of manual string tinkering | Pieter Wuille | |
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. | |||
2012-04-11 | Merge pull request #1083 from laanwj/2012_04_connectionicon | Wladimir J. van der Laan | |
Make 4th bar of connection icon green | |||
2012-04-11 | Remove path.make_preferred() calls, and fix compiler error in bitcoinrpc RE: ↵ | Gavin Andresen | |
boost::system | |||
2012-04-11 | by popular request, make 4th bar of connection icon green | Wladimir J. van der Laan | |
2012-04-11 | Fix build.h dependencies | Pieter Wuille | |
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. | |||
2012-04-10 | Merge pull request #1054 from sipa/buildinfo | Pieter Wuille | |
Build identification strings | |||
2012-04-10 | Merge pull request #1046 from laanwj/2012_04_rpcporterror | Wladimir J. van der Laan | |
Show error message instead of exception crash when unable to bind RPC port | |||
2012-04-10 | Build identification strings | Pieter Wuille | |
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. | |||
2012-04-11 | Toggle main window hide on tray icon click | sje397 | |
- 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 | |||
2012-04-09 | Merge pull request #1052 from sipa/scopedlocks | Pieter Wuille | |
Use scoped locks instead of CRITICAL_BLOCK | |||
2012-04-09 | Merge branch 'filesystem' of https://github.com/Diapolo/bitcoin | Gavin Andresen | |
2012-04-09 | Do not report spurious deadlocks caused by TRY_LOCK | Pieter Wuille | |
2012-04-09 | Support for parametrized locks in deadlock detector | Pieter Wuille | |
2012-04-09 | Use scoped locks instead of CRITICAL_BLOCK | Pieter Wuille | |
2012-04-06 | Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs | Luke Dashjr | |
2012-04-06 | Show error message instead of exception crash when unable to bind RPC port | Wladimir J. van der Laan | |
Fixes issue #875 | |||
2012-04-06 | fixed small error in bitcoinrpc.cpp | Philip Kaufmann | |
2012-04-06 | updated util.cpp to use make_preferred() | Philip Kaufmann | |
2012-04-06 | updated bitcoinrpc.cpp to use make_preferred() and removed double inclusion ↵ | Philip Kaufmann | |
of boost/filesystem.hpp | |||
2012-04-06 | updated db.cpp to use make_preferred() | Philip Kaufmann | |
2012-04-06 | Merge pull request #1033 from sipa/wait | Pieter Wuille | |
Condition variables instead of polling | |||
2012-04-06 | Change sign message bitcoin address tooltip to "The address to sign the ↵ | graingert | |
message with" Closes #1050 | |||
2012-04-05 | Flush on log size instead of transaction count | Pieter Wuille | |
2012-04-05 | Merge pull request #1043 from Diapolo/misc | Gavin Andresen | |
removed obsolete boost workaround (boost ticket #4258) | |||
2012-04-05 | Merge pull request #1042 from gavinandresen/use_ssl_cleanup | Gavin Andresen | |
Remove USE_SSL #define | |||
2012-04-05 | Merge pull request #1037 from gavinandresen/addmultisigenable | Gavin Andresen | |
Enable addmultisigaddress RPC call for main network |