electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 70037b89a919172a893b0a3c3c25af67b301b55b
parent 3c4809ec5a8d1a5b229617dbe3b36b42ebe80457
Author: ThomasV <thomasv@gitorious>
Date:   Mon,  8 Jun 2015 18:40:21 +0200

version 2.3 and release notes

Diffstat:
MRELEASE-NOTES | 22++++++++++++++++++++++
Mlib/version.py | 2+-
2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES @@ -1,3 +1,25 @@ +# Release 2.3 +* Improved logic for the network layer. +* More efficient coin selection. Spend oldest coins first, and + minimize the number of transaction inputs. +* Plugins are independent from the GUI. For example, the openalias + plugin can be used with the command line, as follows: + ./electrum payto <alias> <amount> +* The command line has been refactored: + - arguments are parsed with argparse. + - the help was improved and includes options +* The command line accepts the '!' shortcut to send the maximum amount. + Example: mktx <destination> ! --from <from_address> +* The command line also accepts a '?' shortcut for private keys + arguments, that triggers a prompt. +* Payment requests can be managed with the command line, using the + following commands: addrequest, rmrequest, listrequests. +* Payment requests can be signed with a SSL certificate, and published + in a public web directory. 'electrum addrequest -h' shows the + relevant configuration variables. +* Commands can be called with a new jsonrpc interface; the jsonrpc + interface may be used on a webserver in combination with php. + # Release 2.2 * Show amounts (thousands separators and decimal point) according to locale in GUI diff --git a/lib/version.py b/lib/version.py @@ -1,4 +1,4 @@ -ELECTRUM_VERSION = "2.2" # version of the client package +ELECTRUM_VERSION = "2.3" # version of the client package PROTOCOL_VERSION = '0.9' # protocol version requested NEW_SEED_VERSION = 11 # electrum versions >= 2.0 OLD_SEED_VERSION = 4 # electrum versions < 2.0