novacoin.git
12 years agoWallet encryption part 2: ask passphrase when needed, add menu options
Wladimir J. van der Laan [Wed, 24 Aug 2011 20:07:26 +0000]
Wallet encryption part 2: ask passphrase when needed, add menu options

12 years agoadd russian translation and add unicode compatibility (merges pull request #20)
Misbakh-Soloviev Vadim A [Sun, 28 Aug 2011 12:12:26 +0000]
add russian translation and add unicode compatibility (merges pull request #20)

12 years agoWallet encryption part 1: show wallet encryption status
Wladimir J. van der Laan [Tue, 23 Aug 2011 18:08:42 +0000]
Wallet encryption part 1: show wallet encryption status

12 years agoMerge branch 'master' of https://github.com/bitcoin/bitcoin
Wladimir J. van der Laan [Mon, 22 Aug 2011 12:43:37 +0000]
Merge branch 'master' of https://github.com/bitcoin/bitcoin

12 years agoCompile with DEBUG_LOCKORDER to detect inconsistent lock orderings that can cause...
Gavin Andresen [Tue, 29 Mar 2011 15:32:16 +0000]
Compile with DEBUG_LOCKORDER to detect inconsistent lock orderings that can cause deadlocks

12 years agoupdate README for issue #15
Wladimir J. van der Laan [Tue, 16 Aug 2011 15:37:01 +0000]
update README for issue #15

12 years agoadd russian translation by msva
Wladimir J. van der Laan [Tue, 16 Aug 2011 15:30:58 +0000]
add russian translation by msva

12 years agoRemove unused ScanMessageStart function
Gavin Andresen [Sat, 13 Aug 2011 00:52:38 +0000]
Remove unused ScanMessageStart function

12 years agosrc/makefile.unix: remove -DFOURWAYSSE2
Jeff Garzik [Tue, 16 Aug 2011 14:10:39 +0000]
src/makefile.unix: remove -DFOURWAYSSE2

Spotted by Venkatesh Srinivas <me@endeavour.zapto.org>

12 years agofix issue #13
Wladimir J. van der Laan [Tue, 16 Aug 2011 09:18:27 +0000]
fix issue #13

12 years agoMerge branch 'master' of https://github.com/bitcoin/bitcoin
Wladimir J. van der Laan [Tue, 16 Aug 2011 08:28:24 +0000]
Merge branch 'master' of https://github.com/bitcoin/bitcoin

12 years agoDon't std::advance past beginning of transactions array. Fixes #465
Gavin Andresen [Fri, 12 Aug 2011 19:39:12 +0000]
Don't std::advance past beginning of transactions array.  Fixes #465

12 years agoMerge pull request #458 from TheBlueMatt/copyright
Gavin Andresen [Thu, 11 Aug 2011 17:34:29 +0000]
Merge pull request #458 from TheBlueMatt/copyright

Unify copyright notices.

12 years agoMerge branch 'master' of https://github.com/bitcoin/bitcoin
Wladimir J. van der Laan [Thu, 11 Aug 2011 08:17:21 +0000]
Merge branch 'master' of https://github.com/bitcoin/bitcoin

12 years agoMerge pull request #459 from jgarzik/char-msgstart
Gavin Andresen [Thu, 11 Aug 2011 03:01:37 +0000]
Merge pull request #459 from jgarzik/char-msgstart

Use 'unsigned char' rather than 'char' for pchMessageStart.

12 years agoMerge pull request #460 from jgarzik/make-tuple
Gavin Andresen [Thu, 11 Aug 2011 03:01:14 +0000]
Merge pull request #460 from jgarzik/make-tuple

Qualify make_tuple with boost:: namespace.

12 years agoUse 'unsigned char' rather than 'char' for pchMessageStart.
Venkatesh Srinivas [Sun, 7 Aug 2011 16:19:14 +0000]
Use 'unsigned char' rather than 'char' for pchMessageStart.

Regarding https://bitcointalk.org/index.php?topic=28022.0

main.cpp has: "char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };"
Per discussion on the thread linked, leaving the signedness of
pchMessageStart is unsafe for values > 0x80. This patch specifies
'unsigned char' in main.cpp and net.h.

Signed-off-by: Jeff Garzik <jgarzik@pobox.com>

12 years agoQualify make_tuple with boost:: namespace.
Venkatesh Srinivas [Sun, 7 Aug 2011 16:20:00 +0000]
Qualify make_tuple with boost:: namespace.

db.cpp has a number of uses of make_tuple and has 'using namespace
std' and 'using namespace boost'. Without qualifying make_tuple,
std::make_tuple is preferred, which is incorrect. This patch qualifies
make_tuple.

Signed-off-by: Jeff Garzik <jgarzik@exmulti.com>

12 years agoTest for SO_NOSIGPIPE rather than assuming all BSDs support it.
Venkatesh Srinivas [Sun, 7 Aug 2011 16:18:05 +0000]
Test for SO_NOSIGPIPE rather than assuming all BSDs support it.

Signed-off-by: Jeff Garzik <jgarzik@exmulti.com>

12 years agoDo-nothing MapPort() ifndef USE_UPNP. fixes #450
Gavin Andresen [Tue, 9 Aug 2011 16:38:17 +0000]
Do-nothing MapPort() ifndef USE_UPNP.  fixes #450

12 years agoUnify copyright notices.
Matt Corallo [Tue, 9 Aug 2011 11:27:58 +0000]
Unify copyright notices.

To a variation on:
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2011 The Bitcoin developers

12 years agoCleanup test suite output to be more useful.
Matt Corallo [Tue, 2 Aug 2011 15:34:23 +0000]
Cleanup test suite output to be more useful.

12 years agoAdd file for transaction tests.
Matt Corallo [Sun, 31 Jul 2011 18:07:53 +0000]
Add file for transaction tests.

12 years agoAdd a file for script tests
Vegard Nossum [Sun, 31 Jul 2011 18:01:31 +0000]
Add a file for script tests

12 years agoAdd prototype for EvalScript() to script.h
Vegard Nossum [Wed, 29 Jun 2011 10:33:21 +0000]
Add prototype for EvalScript() to script.h

This is needed for the script unit tests.

12 years agoFix testing setup
Vegard Nossum [Sun, 31 Jul 2011 18:00:38 +0000]
Fix testing setup

There were some problems with the existing testing setup:

 - Makefile rules for test-file compilation used CFLAGS instead of
   CXXFLAGS in makefile.unix

12 years agoAdd missing include to serialize.h
Matt Corallo [Sun, 31 Jul 2011 01:14:25 +0000]
Add missing include to serialize.h

12 years agoAdd missing includes to net.h
Vegard Nossum [Wed, 29 Jun 2011 10:18:18 +0000]
Add missing includes to net.h

12 years agoAdd missing include to script.h
Vegard Nossum [Wed, 29 Jun 2011 10:17:49 +0000]
Add missing include to script.h

12 years agoAdd missing includes to key.h
Vegard Nossum [Sun, 26 Jun 2011 14:11:56 +0000]
Add missing includes to key.h

12 years agoMerge pull request #443 from TheBlueMatt/dupin
Gavin Andresen [Mon, 8 Aug 2011 18:16:40 +0000]
Merge pull request #443 from TheBlueMatt/dupin

Check for duplicate txins in CheckTransaction.

12 years agoQtUI code cleanup / comment improvements
Wladimir J. van der Laan [Mon, 8 Aug 2011 15:38:17 +0000]
QtUI code cleanup / comment improvements

12 years agoadd TODOs in parseBitcoinURL
Wladimir J. van der Laan [Sun, 7 Aug 2011 15:06:34 +0000]
add TODOs in  parseBitcoinURL

12 years agoupdate readme
Wladimir J. van der Laan [Sun, 7 Aug 2011 14:21:09 +0000]
update readme

12 years agoallow empty/missing amounts in URL
Wladimir J. van der Laan [Sun, 7 Aug 2011 14:16:49 +0000]
allow empty/missing amounts in URL

12 years agodon't include <QDebug>
Wladimir J. van der Laan [Sun, 7 Aug 2011 14:09:49 +0000]
don't include <QDebug>

12 years agoAccept "bitcoin:" URL drops from browsers
Wladimir J. van der Laan [Sun, 7 Aug 2011 14:04:48 +0000]
Accept "bitcoin:" URL drops from browsers

12 years agoMerge branch 'master' of https://github.com/bitcoin/bitcoin
Wladimir J. van der Laan [Sat, 6 Aug 2011 16:45:15 +0000]
Merge branch 'master' of https://github.com/bitcoin/bitcoin

12 years agoreorganize transaction model data function, and transaction tooltip
Wladimir J. van der Laan [Sat, 6 Aug 2011 16:37:41 +0000]
reorganize transaction model data function, and transaction tooltip

12 years agoimprove sync spinner
Wladimir J. van der Laan [Fri, 5 Aug 2011 18:25:45 +0000]
improve sync spinner

12 years agospeling fix
Wladimir J. van der Laan [Fri, 5 Aug 2011 13:37:49 +0000]
speling fix

12 years agoimprove tooltip over transactions
Wladimir J. van der Laan [Fri, 5 Aug 2011 13:35:52 +0000]
improve tooltip over transactions

12 years agoselect new address immediately after creation
Wladimir J. van der Laan [Thu, 4 Aug 2011 19:31:47 +0000]
select new address immediately after creation

12 years agoMerge branch 'tmp2'
Jeff Garzik [Thu, 4 Aug 2011 19:22:05 +0000]
Merge branch 'tmp2'

12 years agoMerge pull request #448 from sipa/cbitcoinaddress
Jeff Garzik [Thu, 4 Aug 2011 18:47:15 +0000]
Merge pull request #448 from sipa/cbitcoinaddress

avoid strAddress + validity checks

12 years agoMerge pull request #446 from WakiMiko/upnp-desc
Jeff Garzik [Thu, 4 Aug 2011 18:40:44 +0000]
Merge pull request #446 from WakiMiko/upnp-desc

Identify as "Bitcoin + version number" when mapping UPnP port

12 years agoMerge pull request #451 from TheBlueMatt/tornolisten
Jeff Garzik [Thu, 4 Aug 2011 18:40:06 +0000]
Merge pull request #451 from TheBlueMatt/tornolisten

Don't listen if on TOR (resolves #441).

12 years agominimize amount of text in status bar; show only icons, if the user wants explanation...
Wladimir J. van der Laan [Thu, 4 Aug 2011 17:04:42 +0000]
minimize amount of text in status bar; show only icons, if the user wants explanation they can view the tooltip

12 years agowhen clicking a transaction on the overview page, send the user to the transactions...
Wladimir J. van der Laan [Thu, 4 Aug 2011 02:41:01 +0000]
when clicking a transaction on the overview page, send the user to the transactions page

12 years agoClarity: change definition of "confirmed" to "counts towards balance"
Wladimir J. van der Laan [Thu, 4 Aug 2011 02:40:01 +0000]
Clarity: change definition of "confirmed"  to "counts towards balance"

12 years agoDon't listen if on TOR (resolves #441).
Matt Corallo [Wed, 3 Aug 2011 19:02:37 +0000]
Don't listen if on TOR (resolves #441).

12 years agofix drawing on gtk
Wladimir J. van der Laan [Wed, 3 Aug 2011 19:28:11 +0000]
fix drawing on gtk

12 years agounconfirmed amount = grey
Wladimir J. van der Laan [Wed, 3 Aug 2011 19:04:15 +0000]
unconfirmed amount = grey

12 years agoMake it clear that setting proxy requires restart to fully apply.
Matt Corallo [Wed, 3 Aug 2011 19:02:07 +0000]
Make it clear that setting proxy requires restart to fully apply.

12 years agoshow last few transactions on overview page
Wladimir J. van der Laan [Wed, 3 Aug 2011 18:52:18 +0000]
show last few transactions on overview page

12 years agomake amount field the same width as decimals field
Wladimir J. van der Laan [Wed, 3 Aug 2011 12:06:13 +0000]
make amount field the same width as decimals field

12 years agoavoid strAddress + validity checks
Pieter Wuille [Wed, 3 Aug 2011 11:00:27 +0000]
avoid strAddress + validity checks

Avoid references to addresses using strings, and use CBitcoinAddress
as much as possible. Also added some validity checks on addresses
entered using RPC.

12 years agoadd attribution for wallet image
Wladimir J. van der Laan [Tue, 2 Aug 2011 20:08:59 +0000]
add attribution for wallet image

12 years agoupdate readme and splash screen text
Wladimir J. van der Laan [Tue, 2 Aug 2011 20:03:41 +0000]
update readme and splash screen text

12 years agoadd splash screen
Wladimir J. van der Laan [Tue, 2 Aug 2011 19:48:59 +0000]
add splash screen

12 years agoMerge pull request #444 from Jeroenz0r/patch-2
Pieter Wuille [Mon, 1 Aug 2011 20:41:43 +0000]
Merge pull request #444 from Jeroenz0r/patch-2

Translation from "Open Bitcoin" to "Verstuur Bitcoins"

12 years agoIdentify as "Bitcoin + version number" when mapping UPnP port
Johannes Henninger [Mon, 1 Aug 2011 14:34:59 +0000]
Identify as "Bitcoin + version number" when mapping UPnP port

Makes Bitcoin identify itself as "Bitcoin + version number" instead of
the nondescript "libminiupnpc" when forwarding a port via UPnP.

12 years agoMerge pull request #437 from codler/patch-2
Gavin Andresen [Sun, 31 Jul 2011 23:56:56 +0000]
Merge pull request #437 from codler/patch-2

Comment "deprecated"

12 years agoTranslation from "Open Bitcoin" to "Verstuur Bitcoins"
Jeroenz0r [Sun, 31 Jul 2011 23:03:19 +0000]
Translation from "Open Bitcoin" to "Verstuur Bitcoins"

12 years agoshow n/a for mined transactions (and send to self) instead of empty field
Wladimir J. van der Laan [Sun, 31 Jul 2011 15:43:46 +0000]
show n/a for mined transactions (and send to self) instead of empty field

12 years agoaddress icons
Wladimir J. van der Laan [Sun, 31 Jul 2011 15:05:34 +0000]
address icons

12 years agoCheck for duplicate txins in CheckTransaction.
Matt Corallo [Sat, 30 Jul 2011 21:01:45 +0000]
Check for duplicate txins in CheckTransaction.

12 years agoProperly html-escape labels
Wladimir J. van der Laan [Sun, 31 Jul 2011 10:56:46 +0000]
Properly html-escape labels

12 years agocomment update
Wladimir J. van der Laan [Sat, 30 Jul 2011 17:28:41 +0000]
comment update

12 years agomake sure address book model is up to date after sending coins
Wladimir J. van der Laan [Sat, 30 Jul 2011 17:21:46 +0000]
make sure address book model is up to date after sending coins

12 years agoComment "deprecated"
Han Lin Yap [Sat, 30 Jul 2011 16:58:22 +0000]
Comment "deprecated"

12 years agoRemove unused variable
Wladimir J. van der Laan [Sat, 30 Jul 2011 16:48:05 +0000]
Remove unused variable

12 years agoHide addresses in transaction overview by default, they can be re-shown as a configur...
Wladimir J. van der Laan [Sat, 30 Jul 2011 15:42:02 +0000]
Hide addresses in transaction overview by default, they can be re-shown as a configuration option

12 years agoMake dot in amount field more apparent
Wladimir J. van der Laan [Sat, 30 Jul 2011 15:01:05 +0000]
Make dot in amount field more apparent

12 years agoMake debug info more interesting (show SHA160 addresses for inputs)
Wladimir J. van der Laan [Fri, 29 Jul 2011 21:11:40 +0000]
Make debug info more interesting (show SHA160 addresses for inputs)

12 years agoRemove no longer valid comment
Wladimir J. van der Laan [Fri, 29 Jul 2011 14:16:12 +0000]
Remove no longer valid comment

12 years agoMerge branch 'master' of https://github.com/bitcoin/bitcoin
Wladimir J. van der Laan [Fri, 29 Jul 2011 12:45:54 +0000]
Merge branch 'master' of https://github.com/bitcoin/bitcoin

12 years agoFull support for other units, add configuration option for default unit (used when...
Wladimir J. van der Laan [Fri, 29 Jul 2011 12:36:35 +0000]
Full support for other units, add configuration option for default unit (used when displaying amounts)

12 years agoMerge pull request #436 from TheBlueMatt/master
Pieter Wuille [Wed, 27 Jul 2011 20:10:47 +0000]
Merge pull request #436 from TheBlueMatt/master

Fix EncryptKeys crash introduced by a9ba471, identified by TD.

12 years agoMerge branch 'master' of https://github.com/bitcoin/bitcoin
Wladimir J. van der Laan [Wed, 27 Jul 2011 19:44:55 +0000]
Merge branch 'master' of https://github.com/bitcoin/bitcoin

Conflicts:
src/script.cpp

12 years agonormalize SIGNAL/SLOT signatures (http://marcmutz.wordpress.com/effective-qt/prefer...
Wladimir J. van der Laan [Wed, 27 Jul 2011 18:54:10 +0000]
normalize SIGNAL/SLOT signatures (marcmutz.wordpress.com/effective-qt/prefer-to-use-normalised-signalslot-signatures/)

12 years agoalso accept numbers without dot/decimals for parsing, fixes transaction filter row
Wladimir J. van der Laan [Wed, 27 Jul 2011 18:49:14 +0000]
also accept numbers without dot/decimals for parsing, fixes transaction filter row

12 years agoFix EncryptKeys crash introduced by a9ba4710, identified by TD.
Matt Corallo [Wed, 27 Jul 2011 16:02:39 +0000]
Fix EncryptKeys crash introduced by a9ba4710, identified by TD.

12 years agoCAddrDB::LoadAddresses: properly initialize CAddress
Jeff Garzik [Tue, 26 Jul 2011 19:15:55 +0000]
CAddrDB::LoadAddresses: properly initialize CAddress

Fixes issue #424

12 years agoMerge pull request #435 from sipa/fixextract
Pieter Wuille [Tue, 26 Jul 2011 17:43:00 +0000]
Merge pull request #435 from sipa/fixextract

Bugfix: don't overuse limited ExtractAddress

12 years agoBugfix: don't overuse limited ExtractAddress
Pieter Wuille [Tue, 26 Jul 2011 17:15:45 +0000]
Bugfix: don't overuse limited ExtractAddress

ExtractAddress was called with the keystore as argument in RPC and
UI, limiting results to own keys. This caused empty "address"
fields.

12 years agoMerge pull request #434 from laanwj/addkey_retval
Pieter Wuille [Tue, 26 Jul 2011 15:46:48 +0000]
Merge pull request #434 from laanwj/addkey_retval

make SetHash160 return a value (as specified in the function signature)

12 years agoshow amounts in <b>bold</b> in confirmation dialog
Wladimir J. van der Laan [Tue, 26 Jul 2011 15:37:26 +0000]
show amounts in <b>bold</b> in confirmation dialog

12 years agoRe-apply pull request #10, it got lost for some reason
Wladimir J. van der Laan [Tue, 26 Jul 2011 15:11:55 +0000]
Re-apply pull request #10, it got lost for some reason

12 years agomake SetHash160 return a value (as specified in the function signature)
Wladimir J. van der Laan [Tue, 26 Jul 2011 14:54:32 +0000]
make SetHash160 return a value (as specified in the function signature)

12 years agomake SetHash160 return a value (as specified in the function signature)
Wladimir J. van der Laan [Tue, 26 Jul 2011 14:54:32 +0000]
make SetHash160 return a value (as specified in the function signature)

12 years agoMerge remote branch 'upstream/master'
Wladimir J. van der Laan [Tue, 26 Jul 2011 13:38:31 +0000]
Merge remote branch 'upstream/master'

Conflicts:
src/bitcoinrpc.cpp

12 years agoupdate readme
Wladimir J. van der Laan [Tue, 26 Jul 2011 11:43:54 +0000]
update readme

12 years agoReset unit to default when clearing the field, to prevent confusion
Wladimir J. van der Laan [Tue, 26 Jul 2011 11:31:59 +0000]
Reset unit to default when clearing the field, to prevent confusion

12 years agorefuse to format nor parse invalid units
Wladimir J. van der Laan [Tue, 26 Jul 2011 11:11:28 +0000]
refuse to format nor parse invalid units

12 years agoallow multiple units in bitcoin amount widget (for example, for sending) using a...
Wladimir J. van der Laan [Tue, 26 Jul 2011 11:08:34 +0000]
allow multiple units in bitcoin amount widget (for example, for sending) using a combobox

12 years agoNegative transaction color changed to red (was grey due to mistake)
Wladimir J. van der Laan [Tue, 26 Jul 2011 07:16:50 +0000]
Negative transaction color changed to red (was grey due to mistake)

12 years agoFix UNIX-specific thread handle leak.
JoelKatz [Mon, 25 Jul 2011 22:06:45 +0000]
Fix UNIX-specific thread handle leak.

12 years agofix unit names (μBTC)
Wladimir J. van der Laan [Mon, 25 Jul 2011 20:28:12 +0000]
fix unit names (μBTC)

12 years agopreparations for multiple unit (uBTC, mBTC, BTC) support, fix amount entry issue
Wladimir J. van der Laan [Mon, 25 Jul 2011 19:35:45 +0000]
preparations for multiple unit (uBTC, mBTC, BTC) support, fix amount entry issue