aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-18Merge pull request #3275 from Michagogo/release-process-binary-sizesWladimir J. van der Laan
Add additional data update to release-process.md
2013-11-18Merge pull request #3272Wladimir J. van der Laan
0e165b9 doc: small doxygen update (Wladimir J. van der Laan)
2013-11-18Add additional data update to release-process.mdMicha
This adds https://github.com/bitcoin/bitcoin.org/pull/270 to the to-do list for each release, avoiding future situations like https://bitcointalk.org/index.php?topic=336042.0.
2013-11-17doc: small doxygen updateWladimir J. van der Laan
I was merging change this every time before generation of the doxygen developer docs (https://dev.visucore.com/bitcoin/doxygen/) but there's no reason why it can't just be merged upstream.
2013-11-17Merge pull request #3268Wladimir J. van der Laan
79fac3f [Qt] use GUIUtil::setClipboard() where possible (Philip Kaufmann)
2013-11-16[Qt] use GUIUtil::setClipboard() where possiblePhilip Kaufmann
2013-11-16Merge pull request #3253Wladimir J. van der Laan
6a86c24 Coin Control Features (Cozz Lovan) 8dfd8c6 pass nBytes as parameter to GetMinFee(..) (Cozz Lovan)
2013-11-16Merge pull request #3255Wladimir J. van der Laan
309f796 [Qt] make most Windows appear centered on main GUI (Philip Kaufmann)
2013-11-15Merge pull request #3258Wladimir J. van der Laan
fabba0e orphan spaces cleanup ;-) (Philip Kaufmann)
2013-11-15orphan spaces cleanup ;-)Philip Kaufmann
2013-11-14Merge pull request #3252 from laanwj/2013_11_transifex_pullWladimir J. van der Laan
qt: language update from transifex
2013-11-14Merge pull request #3248 from laanwj/2013_11_overviewpage_alignWladimir J. van der Laan
qt: align amounts on overview page to the right
2013-11-14[Qt] make most Windows appear centered on main GUIPhilip Kaufmann
- remove default value for parent variable in dialogs, which should appear centered over main GUI and pass appropriate value - add some addition NULL pointer checks
2013-11-14qt: language update from transifexWladimir J. van der Laan
Adds three new languages: - de_AT: German (Austria) - gl: Galician - sl_SI: Slovenian (Slovenia) Updates many others. Thanks to the translators contributing on Transifex!
2013-11-14Coin Control FeaturesCozz Lovan
2013-11-14pass nBytes as parameter to GetMinFee(..)Cozz Lovan
2013-11-14qt: align amounts on overview page to the rightWladimir J. van der Laan
This is more consistent with other places in the GUI.
2013-11-14configure: lupdate is not needed for Qt buildWladimir J. van der Laan
Don't require lupdate to build with Qt. Like xgettext it is only needed to update translations, not for normal builds. This fixes the gitian build (broken by fcfbf547d).
2013-11-13Merge pull request #3244 from laanwj/2013_11_mingw_c99_printfWladimir J. van der Laan
Use C99 printf statements in mingw
2013-11-13Merge pull request #3246 from laanwj/2013_11_rpc_helpWladimir J. van der Laan
Clean up RPC help messages (rebased)
2013-11-13tests: add testcases for strprintfWladimir J. van der Laan
2013-11-13Use C99 printf statements in mingwWladimir J. van der Laan
Otherwise, format specifiers such as %llu will not work on XP or earlier. This bug was introduced with 51ed9ec9. http://sourceforge.net/apps/trac/mingw-w64/wiki/gnu%20printf
2013-11-13Issue #1865 - Clean up RPC help messagessje
Based on the proposal, update the help message of rpc methods - strings arguments are in double quotes rather than square brackets - numeric arguments have no quotes (and no default value) - optional parameters are surrounded by round brackets - json arguments are strings but don't use double quotes Added 3 sections for the details - Arguments: lists each argument, it's type, required or not, a default, and a description - Result: The method result, with json format if applicable, type, and a description - Examples: examples calls using bitcoin-cli and curl for json rpc call Problems - maybe this is too verbose - lines might be too long - description are not good or complete - examples may be too much
2013-11-13Merge pull request #3240 from laanwj/2013_11_rebase_no_walletWladimir J. van der Laan
Introduce disable-wallet / no-wallet mode (rebased)
2013-11-13qt: GUI support for -disablewallet modeWladimir J. van der Laan
2013-11-13Add -disablewallet option, to disable wallet support (and BDB)Jeff Garzik
2013-11-12Merge pull request #3241 from laanwj/2013_11_uri_scheme_case_insensitiveWladimir J. van der Laan
qt: make URI scheme comparison case insensitive
2013-11-12qt: make URI scheme comparison case insensitiveWladimir J. van der Laan
Fixes ancient issue #1460.
2013-11-12init.cpp: cosmetic indent changes, preparing for no-wallet modeJeff Garzik
2013-11-12Merge pull request #3238 from Diapolo/guiutilWladimir J. van der Laan
[Qt] remove GUIUtil::getSaveFileName() default arguments
2013-11-12Merge pull request #3235 from Diapolo/miscWladimir J. van der Laan
misc small changes to polish after include cleanup
2013-11-11Merge pull request #2980 from wtogami/silenceunusedwarningGavin Andresen
Silence useless warning in src/json/json_spirit_writer_template.h to mak...
2013-11-11[Qt] remove GUIUtil::getSaveFileName() default argumentsPhilip Kaufmann
- harmonize function with GUIUtil::getOpenFileName() - also make PNG Image singular (grammar)
2013-11-11misc small changes to polish after include cleanupPhilip Kaufmann
2013-11-11Merge pull request #3187 from Diapolo/netManagerWladimir J. van der Laan
[Qt] paymentserver: start netManager in uiReady()
2013-11-11Merge pull request #3138 from super3/masterWladimir J. van der Laan
Squash README
2013-11-11Merge pull request #3215 from laanwj/2013_11_openuridialogWladimir J. van der Laan
qt: add Open URI dialog
2013-11-11qt: add Open URI dialogWladimir J. van der Laan
2013-11-11Space saving in /doc README.super3
Fixed. Split off build, and bootstrap link.
2013-11-11[Qt] paymentserver: start netManager in uiReady()Philip Kaufmann
- remove explicit init of netManager as this is done in the constructor anyway - move initNetManager() call to uiReady(), which removes an assert() and allows us to use message() in initNetManager() (currently unused but could be necessary because of proxy related messages) - make initNetManager() private - update paymentservertests.cpp
2013-11-11doc: replace DOS with MSYS shell to be more consistentWladimir J. van der Laan
A plain DOS window doesn't have the right path settings, whereas the MSYS shell window does.
2013-11-11Merge pull request #3233 from laanwj/2013_11_autoconfWladimir J. van der Laan
Autoconf improvements
2013-11-11configure: Automatically disable bitcoin-qt by default, if dependencies are ↵Luke Dashjr
not met
2013-11-11Merge pull request #3231 from brandondahler/doc-autotool-updateWladimir J. van der Laan
Update build docs that refer to old makefile.* files.
2013-11-11configure: Simplify common AM_CPPFLAGS and AM_LDFLAGS to a Makefile.commonLuke Dashjr
2013-11-11Merge pull request #3232 from laanwj/2013_11_ubuntu1310Wladimir J. van der Laan
doc: add note about building on Ubuntu 13.10
2013-11-11doc: add note about building on Ubuntu 13.10Wladimir J. van der Laan
Also mention `autoconf` as required package.
2013-11-10Update build docs that refer to old makefile.* files.Brandon Dahler
Also update pull-tester's error message.
2013-11-10Merge pull request #3199 from sipa/mempoolmoveGavin Andresen
Cleanup refactoring of coins/mempool
2013-11-10Merge pull request #3185 from gavinandresen/rejectGavin Andresen
Reject p2p message