Browse Source

prepare for 2.2 release

283
ThomasV 10 years ago
parent
commit
a0e9046c2c
  1. 6
      RELEASE-NOTES
  2. 2
      lib/daemon.py
  3. 2
      lib/version.py

6
RELEASE-NOTES

@ -1,3 +1,9 @@
# Release 2.2
* Show thousands separators in GUI
* Show unmatured coins in balance
* Fix exchange rates plugin
* Network layer: refactoring and fixes
# Release 2.1.1 # Release 2.1.1
* patch a bug that prevents new wallet creation. * patch a bug that prevents new wallet creation.
* fix connection issue on osx binaries * fix connection issue on osx binaries

2
lib/daemon.py

@ -115,7 +115,7 @@ class NetworkServer(util.DaemonThread):
def __init__(self, config): def __init__(self, config):
util.DaemonThread.__init__(self) util.DaemonThread.__init__(self)
self.debug = 1 self.debug = False
self.config = config self.config = config
self.network = Network(config) self.network = Network(config)
# network sends responses on that queue # network sends responses on that queue

2
lib/version.py

@ -1,4 +1,4 @@
ELECTRUM_VERSION = "2.1.1" # version of the client package ELECTRUM_VERSION = "2.2" # version of the client package
PROTOCOL_VERSION = '0.9' # protocol version requested PROTOCOL_VERSION = '0.9' # protocol version requested
NEW_SEED_VERSION = 11 # electrum versions >= 2.0 NEW_SEED_VERSION = 11 # electrum versions >= 2.0
OLD_SEED_VERSION = 4 # electrum versions < 2.0 OLD_SEED_VERSION = 4 # electrum versions < 2.0

Loading…
Cancel
Save