fanquake
26227db843
Typo
12 years ago
fanquake
951f7d35d6
Fix Typo
12 years ago
Gavin Andresen
0bf30d2b33
Merge pull request #1621 from luke-jr/WinCOPYING
...
Replace all occurances of license.txt with COPYING, including naming the file COPYING.txt on Windows
12 years ago
Luke Dashjr
90d95b6323
Replace all occurances of license.txt with COPYING, including naming the file COPYING.txt on Windows
12 years ago
Philip Kaufmann
1376a542b4
optionsdialog cleanup
...
- remove duplicate includes, that are already present in ui_optionsdialog.h
- change QIntValidator to not allow 0 as port-number
- re-order some function calls to match the Ui element order, for better readbility and to prepare for the addition of further IPv6 and Tor proxy options
- restat warning for the language selection is only shown, when the language was changed (not on simply activating the Ui element)
- split check for object == ui->proxyIp into seperate if-clause
- micro-optimize the code in the above mentioned if-clause
- unify used format for comments in the code
- introduce handleProxyIpValid() function, which handles UI elements and the
save button states for valid/invalid proxy IPs
12 years ago
Jeff Garzik
fa914f1dda
Merge pull request #1616 from Diapolo/OpenSSL_typo
...
fix OpenSSL not written as proper noun in some comments
12 years ago
Philip Kaufmann
a7f82808c4
fix OpenSSL not written as proper noun in some comments
12 years ago
Philip Kaufmann
a76552ce47
do not use external IPv4 discovery, when -onlynet="IPv6"
12 years ago
Wladimir J. van der Laan
134cb634b1
Merge pull request #1611 from Diapolo/addressbookpage_size
...
re-size addressbookpage.ui to fix #1062
12 years ago
Philip Kaufmann
1d915d0237
re-size addressbookpage.ui to fix #1062
12 years ago
Jeff Garzik
e3132693fa
Merge pull request #1610 from fanquake/master
...
Update a link to dev resources
12 years ago
fanquake
100f189c25
Update a link
12 years ago
Jeff Garzik
4b76541c25
Merge pull request #1609 from fanquake/master
...
Docs tidy up + fixes
12 years ago
fanquake
f00a0dcfed
Docs Tidy up
12 years ago
Gregory Maxwell
07becec31c
Merge pull request #1608 from runeksvendsen/master
...
Update the comment in GetBlockValue() to better reflect the uncertainty about the time interval between subsidy reductions
12 years ago
Wladimir J. van der Laan
1854433829
Merge pull request #1563 from Diapolo/pro-file
...
update Boost version to 1.49 for Windows in the Qt project file
12 years ago
Rune K. Svendsen
5f2e4b0565
Let the comment in GetBlockValue() reflect the uncertainty about the time interval between subsidy reductions
12 years ago
Wladimir J. van der Laan
e47bd0195c
Merge pull request #1605 from laanwj/2012_07_caseinsensitivesort
...
Make sort and filters for transactions and labels case-insensitive
12 years ago
Gavin Andresen
c93236b564
Merge branch 'master' of git://github.com/fanquake/bitcoin
12 years ago
Gavin Andresen
3c3666d67e
New feature for signrawtransaction: specify signature hash (ALL/NONE/etc)
12 years ago
Gavin Andresen
18871d4785
Give a better error message than 'type mismatch' for complex JSON arguments
12 years ago
Philip Kaufmann
ce2f66d9bf
small update for BitcoinGUI::setNumBlocks() function
...
- re-work code parts that check if we have a Statusbar warning
- use same variable names in the header
12 years ago
Wladimir J. van der Laan
d67badd9ce
Make sort and filters for transactions and labels case-insensitive
12 years ago
Wladimir J. van der Laan
ab0d6428b1
Merge pull request #1604 from Diapolo/fix_comment_net
...
fix a comment in net.cpp
12 years ago
Wladimir J. van der Laan
d47afc7f4c
Merge pull request #1564 from Diapolo/IPC-server
...
IPC-server hardening and update
12 years ago
Philip Kaufmann
c95d9a9482
fix a comment in net.cpp
12 years ago
Philip Kaufmann
41c938eede
IPC-server hardening and update
...
- add IMPLEMENT_RANDOMIZE_STACK for ipcThread()
- log / print boost interprocess exceptions
- use MAX_URI_LENGTH in guiconstants.h (also used in qrcodedialog.cpp)
- remove unneeded includes and ipcShutdown() from qtipcserver.cpp
- fix a small mem-leak by deleting mq before re-using it
- make ipcThread() and ipcThread2() static functions
- add some more comments
12 years ago
Wladimir J. van der Laan
ce652affe0
Merge pull request #1591 from Diapolo/lang_sel_Qt4.8
...
enhance lang-selection in OptionsDialog, when compiling with Qt >= 4.8
12 years ago
Gavin Andresen
14ad993895
Merge branch 'fix-commandline-warnings' of git://github.com/muggenhor/bitcoin
12 years ago
Gavin Andresen
92f6fb4cfa
Teach RenameThread to work on OSX
12 years ago
Giel van Schijndel
36fe96581f
Give the GUI-IPC thread a name as well
...
Signed-off-by: Giel van Schijndel <me@mortis.eu>
12 years ago
Giel van Schijndel
b277b0f100
Don't check for __linux__ specifically, check for PR_SET_NAME feature instead
...
Signed-off-by: Giel van Schijndel <me@mortis.eu>
12 years ago
Giel van Schijndel
304ca95508
Add support for renaming FreeBSD and OpenBSD threads
...
NOTE: This is currently disabled, until a developer with FreeBSD/OpenBSD
can confirm that this works (without causing undefined behaviour
preferrably).
Signed-off-by: Giel van Schijndel <me@mortis.eu>
12 years ago
Giel van Schijndel
9f46ab62b1
Fix thread names after review
...
* Fix wrong thread name for wallet *relocking* thread
- Was named the unlocking thread
* Use consistent naming
Signed-off-by: Giel van Schijndel <me@mortis.eu>
12 years ago
Giel van Schijndel
96931d6f78
Give threads a recognisable name to aid in debugging
...
NOTE: These thread names are visible in gdb when using 'info threads'.
Additionally both 'top' and 'ps' show these names *unless* told to
display the command-line instead of task name.
Signed-off-by: Giel van Schijndel <me@mortis.eu>
12 years ago
Giel van Schijndel
f04f24503d
Use linker-arguments only when linking
...
Passing linker-arguments when only compiling will cause warnings with
Clang. This change fixes those.
Signed-off-by: Giel van Schijndel <me@mortis.eu>
12 years ago
Wladimir J. van der Laan
1c009d622d
Merge pull request #1592 from Diapolo/Qt_WindowTitle
...
change Window title to "Bitcoin - Wallet" / misc related renames
13 years ago
Wladimir J. van der Laan
6cc409c24b
Merge pull request #1587 from Diapolo/signverifymessagedialog
...
fix a wrong string in signverifymessagedialog.ui
13 years ago
Wladimir J. van der Laan
07f1bb0d60
Merge pull request #1593 from Diapolo/testnet_icon_about
...
when on testnet, set testnet icon for about dialog
13 years ago
fanquake
1f915e418c
Correct OpenSSL in makefile
...
1.0.0d -> 1.0.1b
13 years ago
Gavin Andresen
1290914b37
Merge pull request #1595 from fanquake/master
...
Correct OpenSSL version
13 years ago
fanquake
d0c0706042
Correct OpenSSL version
13 years ago
Gavin Andresen
dbb0a12366
Merge branch 'chashwriter' of https://github.com/sipa/bitcoin
13 years ago
Wladimir J. van der Laan
916b11fba5
Merge pull request #1575 from laanwj/2012_07_persistentbalancecheck
...
(UI) Persistently poll for balance change when number of blocks changed
13 years ago
Philip Kaufmann
b9a33a61a0
change Window title to "Bitcoin - Wallet" / misc related renames
...
- this helps user to not think our Client is called "Bitcoin Wallet"
- change "About Bitcoin-Qt" to "About Bitcoin"
- change "Bitcoin debug window" to "Bitcoin - Debug window"
- change "Client" in debug Window to "Bitcoin Core"
13 years ago
Philip Kaufmann
56d673675d
when on testnet, set testnet icon for about dialog
...
- add a comment
13 years ago
Philip Kaufmann
81ccec4042
enhance lang-selection in OptionsDialog, when compiling with Qt >= 4.8
13 years ago
Gavin Andresen
771ffb5e28
Bug fix: sendrawtransaction was not relaying properly
13 years ago
Luke Dashjr
639b61d78e
Tests for CreateNewBlock
13 years ago
Wladimir J. van der Laan
4a7d53ee23
Merge pull request #1572 from Diapolo/optionsmodel_cleanup
...
GUI: optionsmodel cleanup
13 years ago