novacoin.git
12 years agoMerge branch '0.4.x' into 0.5.x
Luke Dashjr [Sun, 22 Apr 2012 14:05:43 +0000]
Merge branch '0.4.x' into 0.5.x

Conflicts:
src/main.cpp

12 years agoAdd missing includes. (Fix bulding under GCC 4.7)
Timothy Redaelli [Fri, 20 Apr 2012 10:50:57 +0000]
Add missing includes. (Fix bulding under GCC 4.7)

(Note: GCC 4.7 build NOT tested with backports -Luke)

12 years agoFix bugs on 'unsigned char' platforms.
Dwayne C. Litzenberger [Mon, 16 Apr 2012 05:32:55 +0000]
Fix bugs on 'unsigned char' platforms.

In ISO C++, the signedness of 'char' is undefined.  On some platforms (e.g.
ARM), 'char' is an unsigned type, but some of the code relies on 'char' being
signed (as it is on x86).  This is indicated by compiler warnings like this:

 bignum.h: In constructor 'CBigNum::CBigNum(char)':
 bignum.h:81:59: warning: comparison is always true due to limited range of data type [-Wtype-limits]

 util.cpp: In function 'bool IsHex(const string&)':
 util.cpp:427:28: warning: comparison is always false due to limited range of data type [-Wtype-limits]

In particular, IsHex erroneously returned true regardless of the input
characters, as long as the length of the string was a positive multiple of 2.

Note: For testing, it's possible using GCC to force char to be unsigned by
adding the -funsigned-char parameter to xCXXFLAGS.

12 years agoFix phexdigits[255] is undefined.
Dwayne C. Litzenberger [Mon, 16 Apr 2012 05:31:38 +0000]
Fix phexdigits[255] is undefined.

12 years agoAdd missing breaks in optionmodel's switch case
Pieter Wuille [Tue, 17 Apr 2012 21:27:59 +0000]
Add missing breaks in optionmodel's switch case

12 years agoFix potential deadlock
Pieter Wuille [Tue, 17 Apr 2012 16:50:45 +0000]
Fix potential deadlock

Conflict:
* cs_main in ProcessMessages() (before calling ProcessMessages)
* cs_vSend in CNode::BeginMessage
versus:
* cs_vSend in ThreadMessageHandler2 (before calling SendMessages)
* cs_main in SendMessages

Even though cs_vSend is a try_lock, if it succeeds simultaneously with
the locking of cs_main in ProcessMessages(), it could cause a deadlock.

12 years agoFix misc. minor sign-comparison warnings
Jeff Garzik [Sun, 15 Apr 2012 21:00:20 +0000]
Fix misc. minor sign-comparison warnings

12 years agoCNode's nHeaderStart may be negative, so change its type (PARTIAL)
Jeff Garzik [Sun, 15 Apr 2012 20:59:48 +0000]
CNode's nHeaderStart may be negative, so change its type (PARTIAL)

12 years agoFix loop index var types, fixing many minor sign comparison warnings
Jeff Garzik [Sun, 15 Apr 2012 20:52:09 +0000]
Fix loop index var types, fixing many minor sign comparison warnings

foo.size() typically returns an unsigned integral type; make loop variables
match those types' signedness.

12 years agoThe string class returns string::npos, when find() fails.
Jeff Garzik [Sun, 15 Apr 2012 20:47:24 +0000]
The string class returns string::npos, when find() fails.

Noticed when sign-comparison warnings were enabled.

12 years agoAdd forgotten initializer
Wladimir J. van der Laan [Mon, 16 Apr 2012 09:46:13 +0000]
Add forgotten initializer

12 years agoAlreadyHave(): only hold lock during mapTransactions access
Jeff Garzik [Tue, 17 Apr 2012 16:30:00 +0000]
AlreadyHave(): only hold lock during mapTransactions access

12 years agoLocking fix for AlreadyHave()
Jeff Garzik [Fri, 13 Apr 2012 22:24:55 +0000]
Locking fix for AlreadyHave()

Access to mapTransactions[] must be guarded by cs_mapTransactions lock.

12 years agoSet label when selecting an address that already has a label. Fixes #1080.
Wladimir J. van der Laan [Fri, 13 Apr 2012 19:08:46 +0000]
Set label when selecting an address that already has a label. Fixes #1080.

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Mon, 16 Apr 2012 01:06:10 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Mon, 16 Apr 2012 01:05:54 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/keystore.h

12 years agofix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
Wladimir J. van der Laan [Sun, 15 Apr 2012 11:27:00 +0000]
fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]

12 years agofix warnings: delete called on 'XX' that has virtual functions but non-virtual destru...
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:59:20 +0000]
fix warnings: delete called on 'XX' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor]

12 years agofix warnings: unused variable 'XX' [-Wunused-variable]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:53:14 +0000]
fix warnings: unused variable 'XX' [-Wunused-variable]

12 years agofix warnings: enumeration values 'XX' not handled in switch [-Wswitch-enum]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:42:52 +0000]
fix warnings: enumeration values 'XX' not handled in switch [-Wswitch-enum]

12 years agofix warnings: 'XX' defined as a struct here but previously declared as a class [...
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:31:56 +0000]
fix warnings: 'XX' defined as a struct here but previously declared as a class [-Wmismatched-tags]

12 years agofix warnings: array subscript is of type 'char' [-Wchar-subscripts]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:22:30 +0000]
fix warnings: array subscript is of type 'char' [-Wchar-subscripts]

12 years agofix warnings: array subscript is of type 'char' [-Wchar-subscripts]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:22:30 +0000]
fix warnings: array subscript is of type 'char' [-Wchar-subscripts]

12 years agowork around issue in boost::program_options that prevents from compiling in clang
Wladimir J. van der Laan [Sun, 15 Apr 2012 09:42:40 +0000]
work around issue in boost::program_options that prevents from compiling in clang

12 years agoShow a message box when runaway exception happens
Wladimir J. van der Laan [Sat, 14 Apr 2012 07:41:05 +0000]
Show a message box when runaway exception happens

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.

12 years agoMerge commit 'e962c7f' into 0.5.0.x
Luke Dashjr [Sun, 15 Apr 2012 17:23:43 +0000]
Merge commit 'e962c7f' into 0.5.0.x

12 years agoBugfix: nTotalBlocks wasn't in 0.5.0, so need to replace it with equivalent function...
Luke Dashjr [Sun, 15 Apr 2012 17:23:34 +0000]
Bugfix: nTotalBlocks wasn't in 0.5.0, so need to replace it with equivalent function call in backport

12 years agoAdd symlink to scripts/qt/make_windows_icon.sh from old file name, just in case
Luke Dashjr [Sat, 14 Apr 2012 19:38:26 +0000]
Add symlink to scripts/qt/make_windows_icon.sh from old file name, just in case

12 years agoRename make_windows_icon.py to .sh as it is a shell script (fixes #1099)
Wladimir J. van der Laan [Sat, 14 Apr 2012 16:32:30 +0000]
Rename make_windows_icon.py to .sh as it is a shell script (fixes #1099)

12 years agoDo not show green tick unless all known blocks are downloaded (fixes #921)
Wladimir J. van der Laan [Sat, 14 Apr 2012 06:21:22 +0000]
Do not show green tick unless all known blocks are downloaded (fixes #921)

12 years agoAdd missing tooltip and key shortcut in settings dialog (#1088 without line break...
Wladimir J. van der Laan [Fri, 13 Apr 2012 07:16:46 +0000]
Add missing tooltip and key shortcut in settings dialog (#1088 without line break part)

12 years agoBug fix listtransactions from/count handling.
Gavin Andresen [Thu, 5 Apr 2012 00:56:13 +0000]
Bug fix listtransactions from/count handling.

12 years agoShow error message instead of exception crash when unable to bind RPC port
Wladimir J. van der Laan [Thu, 5 Apr 2012 18:36:27 +0000]
Show error message instead of exception crash when unable to bind RPC port

Fixes issue #875

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Fri, 6 Apr 2012 21:45:20 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoBugfix: Windows lacks sleep(), so need to use Sleep() from util.h
Luke Dashjr [Fri, 6 Apr 2012 21:44:26 +0000]
Bugfix: Windows lacks sleep(), so need to use Sleep() from util.h

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Fri, 6 Apr 2012 20:34:34 +0000]
Merge branch '0.5.0.x' into 0.5.x

Conflicts:
src/qt/notificator.h

12 years agoProper support for Growl 1.3 notifications
p2k [Mon, 12 Mar 2012 13:20:55 +0000]
Proper support for Growl 1.3 notifications

12 years agoBugfix: Replace "URL" with "URI" where we aren't actually working with URLs
Luke Dashjr [Sun, 25 Mar 2012 21:25:10 +0000]
Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs

12 years agoMerge branch 'strlcpy_attribute' into 0.5.0.x
Luke Dashjr [Thu, 5 Apr 2012 23:43:06 +0000]
Merge branch 'strlcpy_attribute' into 0.5.0.x

12 years agoDocument strlcpy.h in assets-attribution.txt since it isn't MIT-licensed
Luke Dashjr [Thu, 5 Apr 2012 22:58:20 +0000]
Document strlcpy.h in assets-attribution.txt since it isn't MIT-licensed

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Thu, 5 Apr 2012 22:21:01 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Thu, 5 Apr 2012 22:20:18 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoVerify status of encrypt/decrypt calls to detect failed padding
Pieter Wuille [Wed, 4 Apr 2012 23:02:49 +0000]
Verify status of encrypt/decrypt calls to detect failed padding

12 years agoIncrease time ago of last block for "up to date" status from 30 to 90 minutes
Wladimir J. van der Laan [Mon, 2 Apr 2012 18:34:17 +0000]
Increase time ago of last block for "up to date" status from 30 to 90 minutes

It was too hyperactive.
gmaxwell: I mean that right now when the block gap goes over an hour it starts showing synchronizing. Increasing that to 90 minutes or so would make it only happen about 6.4 times per year

12 years agoAdd laanwj to gitian download scripts.
Matt Corallo [Fri, 16 Dec 2011 20:04:43 +0000]
Add laanwj to gitian download scripts.

12 years agoAdd laanwj to gitian download scripts.
Matt Corallo [Fri, 16 Dec 2011 20:04:43 +0000]
Add laanwj to gitian download scripts.

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Wed, 4 Apr 2012 19:41:07 +0000]
Merge branch '0.5.0.x' into 0.5.x

Conflicts:
src/qt/bitcoingui.h

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Wed, 4 Apr 2012 19:36:25 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoUse a messagebox to display the error when -server is provided without providing...
Wladimir J. van der Laan [Sat, 31 Mar 2012 13:08:25 +0000]
Use a messagebox to display the error when -server is provided without providing a rpc password

(plus part of 7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5)

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Wed, 4 Apr 2012 14:30:32 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoAdd Luke-Jr's PGP key to gitian-downloader
Luke Dashjr [Mon, 12 Mar 2012 04:45:08 +0000]
Add Luke-Jr's PGP key to gitian-downloader

12 years agoAdd Luke-Jr's PGP key to gitian-downloader
Luke Dashjr [Mon, 12 Mar 2012 04:45:08 +0000]
Add Luke-Jr's PGP key to gitian-downloader

12 years agoremoved an ugly line break in a transaction tooltip for case TransactionStatus::Mature
Philip Kaufmann [Tue, 27 Mar 2012 21:15:05 +0000]
removed an ugly line break in a transaction tooltip for case TransactionStatus::Mature

12 years agoUpdated my GPG key
Pieter Wuille [Mon, 26 Mar 2012 20:12:25 +0000]
Updated my GPG key

12 years agoUpdated my GPG key
Pieter Wuille [Mon, 26 Mar 2012 20:12:25 +0000]
Updated my GPG key

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Wed, 4 Apr 2012 14:10:16 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/main.cpp
src/makefile.unix

12 years agoFix script tests for P2SH
Luke Dashjr [Wed, 4 Apr 2012 13:35:22 +0000]
Fix script tests for P2SH

Upstream: 922e8e2929a2e78270868385aa46f96002fbcff3

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 agoDo not invoke anti-DoS system for invalid BIP16 transactions
Pieter Wuille [Sat, 25 Feb 2012 18:02:30 +0000]
Do not invoke anti-DoS system for invalid BIP16 transactions

Doing so would allow an attack on old nodes, which would relay a
standard transaction spending a BIP16 output in an invalid way,
until reaching a new node, which will disconnect their peer.

Reported by makomk on IRC.

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Mon, 2 Apr 2012 13:37:09 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch 'vfycompsig_0.5.0' into 0.5.0.x
Luke Dashjr [Wed, 28 Mar 2012 00:10:46 +0000]
Merge branch 'vfycompsig_0.5.0' into 0.5.0.x

12 years agoMinimal support for compressed-key signature recovery (for verifymessage)
Luke Dashjr [Wed, 28 Mar 2012 00:03:28 +0000]
Minimal support for compressed-key signature recovery (for verifymessage)

Upstream commits:
11529c6e4f7288d8a64c488a726ee3821c7adefe
d4d9c734c315e99136fe245c5733ca75cab9f8bf

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Tue, 27 Mar 2012 00:07:28 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Tue, 27 Mar 2012 00:06:55 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoRemove wxWidgets .exe and locales during setup
Gavin Andresen [Mon, 26 Mar 2012 16:33:35 +0000]
Remove wxWidgets .exe and locales during setup

12 years agoCheck minversion before loading the rest of the wallet
Pieter Wuille [Thu, 22 Mar 2012 03:59:59 +0000]
Check minversion before loading the rest of the wallet

When a 0.6 wallet with compressed pubkeys is created, it writes a
minversion record to prevent older clients from reading it. If the 0.5
loading it sees a key record before seeing the minversion record however,
it will fail with DB_CORRUPT instead of DB_TOO_NEW.

12 years agoFix warning about deprecated unescaped backslash
Wladimir J. van der Laan [Wed, 21 Mar 2012 21:29:33 +0000]
Fix warning about deprecated unescaped backslash

12 years agoWhen disconnecting a node, clear the received buffer so that we do
Alistair Buxton [Sun, 18 Mar 2012 03:03:24 +0000]
When disconnecting a node, clear the received buffer so that we do
not process any already received messages.

The primary reason to do this is if a node spams hundreds of messages
and we ban them, we don't want to continue processing the rest of it.

12 years agoMore debug output for failed reorganizations
Pieter Wuille [Wed, 21 Mar 2012 12:15:27 +0000]
More debug output for failed reorganizations

12 years agoReport number of (dis)connected blocks in reorganization
Pieter Wuille [Sun, 19 Feb 2012 18:42:15 +0000]
Report number of (dis)connected blocks in reorganization

Also report old and new best, and fork point.

12 years agoFix grammatical errors in translation process documentation (partial of 2fac102)
Luke Dashjr [Thu, 22 Mar 2012 20:15:30 +0000]
Fix grammatical errors in translation process documentation (partial of 2fac102)

12 years agoUse last checkpoint instead of hard-coded 140,700. Fixes #913.
Gavin Andresen [Tue, 20 Mar 2012 17:45:45 +0000]
Use last checkpoint instead of hard-coded 140,700. Fixes #913.

12 years agoMerge branch '0.5.3.x' into 0.5.x
Luke Dashjr [Thu, 22 Mar 2012 18:15:12 +0000]
Merge branch '0.5.3.x' into 0.5.x

Conflicts:
bitcoin-qt.pro
doc/README
doc/README_windows.txt
share/setup.nsi
src/serialize.h

12 years agoMove QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build
Luke Dashjr [Sat, 17 Mar 2012 23:54:22 +0000]
Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build

It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it.
v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it.

Use `qmake MINGW_THREAD_BUGFIX=0` to disable

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Wed, 21 Mar 2012 17:50:35 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Wed, 21 Mar 2012 17:39:57 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/main.cpp

12 years agoMerge branch 'bip16_0.4.x' into 0.4.x
Luke Dashjr [Wed, 21 Mar 2012 17:30:56 +0000]
Merge branch 'bip16_0.4.x' into 0.4.x

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Wed, 21 Mar 2012 17:22:24 +0000]
Merge branch '0.5.0.x' into 0.5.x

Conflicts:
bitcoin-qt.pro
doc/README
doc/README_windows.txt
share/setup.nsi
src/serialize.h

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Wed, 21 Mar 2012 17:19:25 +0000]
Merge branch '0.4.x' into 0.5.0.x

12 years agoMinimal support for validating BIP16 pay-to-script-hash transactions
Luke Dashjr [Tue, 13 Mar 2012 21:22:07 +0000]
Minimal support for validating BIP16 pay-to-script-hash transactions

Note this does NOT include accepting them in blocks (making them standard)

12 years agoWorkaround for BN_bn2mpi reading/writing out of bounds
Pieter Wuille [Sat, 18 Feb 2012 12:32:25 +0000]
Workaround for BN_bn2mpi reading/writing out of bounds

When OpenSSL's BN_bn2mpi is passed a buffer of size 4, valgrind
reports reading/writing one byte past it. I am unable to find
evidence of this behaviour in BN_bn2mpi's source code, so it may
be a spurious warning. However, this change is harmless, as only
the bignum with value 0 results in an mpi serialization of size 4.

12 years agoYet another attempt at implementing "minimize to tray" that works on all OSes
Wladimir J. van der Laan [Thu, 15 Mar 2012 21:30:08 +0000]
Yet another attempt at implementing "minimize to tray" that works on all OSes

12 years agoHide window from taskbar when "minimize to tray" active by making window into Tool...
Wladimir J. van der Laan [Fri, 17 Feb 2012 12:50:32 +0000]
Hide window from taskbar when "minimize to tray" active by making window into Tool window

12 years agoMake the sendcoins dialog use the configured unit type, even on the first attempt.
Joel Kaartinen [Fri, 16 Mar 2012 12:23:59 +0000]
Make the sendcoins dialog use the configured unit type, even on the first attempt.

12 years agoPrint more diagnostic info for the various DB_CORRUPT conditions
Luke Dashjr [Sun, 11 Mar 2012 22:07:40 +0000]
Print more diagnostic info for the various DB_CORRUPT conditions

12 years agoPrint wallet load errors (to debug.log)
Luke Dashjr [Sun, 11 Mar 2012 21:57:44 +0000]
Print wallet load errors (to debug.log)

12 years agoBump version to 0.5.0.6
Luke Dashjr [Mon, 19 Mar 2012 16:15:03 +0000]
Bump version to 0.5.0.6

12 years agoMove QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build
Luke Dashjr [Sat, 17 Mar 2012 23:54:22 +0000]
Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build

It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it.
v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it.

12 years agoMove QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build
Luke Dashjr [Sat, 17 Mar 2012 23:54:22 +0000]
Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build

It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it.
v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it.

12 years agoBump version to 0.5.3.1
Matt Corallo [Fri, 16 Mar 2012 02:25:07 +0000]
Bump version to 0.5.3.1

12 years agoBugfix: Missing includes
Luke Dashjr [Sat, 17 Mar 2012 00:31:12 +0000]
Bugfix: Missing includes

12 years agoBugfix: Missing includes
Luke Dashjr [Sat, 17 Mar 2012 00:31:12 +0000]
Bugfix: Missing includes

12 years agoMerge branch '0.5.0.x' into 0.5.3.x
Luke Dashjr [Fri, 16 Mar 2012 21:28:22 +0000]
Merge branch '0.5.0.x' into 0.5.3.x

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Fri, 16 Mar 2012 20:45:32 +0000]
Merge branch '0.5.0.x' into 0.5.x

Conflicts:
bitcoin-qt.pro
doc/README
doc/README_windows.txt
share/setup.nsi
src/serialize.h

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Fri, 16 Mar 2012 20:44:00 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
contrib/Bitcoin.app/Contents/Info.plist
doc/README
doc/README_windows.txt
share/setup.nsi
src/serialize.h

12 years agoFix issue #848 : broken mining on testnet
Gavin Andresen [Thu, 16 Feb 2012 15:22:31 +0000]
Fix issue #848 : broken mining on testnet

12 years agoFix issue #848 : broken mining on testnet
Gavin Andresen [Thu, 16 Feb 2012 15:22:31 +0000]
Fix issue #848 : broken mining on testnet

12 years agofix default suffixes in save dialog in GNOME, make it more clear that PNG is used...
Wladimir J. van der Laan [Wed, 15 Feb 2012 13:47:08 +0000]
fix default suffixes in save dialog in GNOME, make it more clear that PNG is used (solves #833)

12 years agoBump version to 0.5.4
Luke Dashjr [Fri, 16 Mar 2012 20:12:16 +0000]
Bump version to 0.5.4

12 years agoBump version to 0.5.0.5
Luke Dashjr [Fri, 16 Mar 2012 20:11:11 +0000]
Bump version to 0.5.0.5