From: ThomasV Date: Tue, 12 Nov 2013 21:47:52 +0000 (+0100) Subject: 1.9.4 X-Git-Url: https://git.novaco.in/?p=electrum-nvc.git;a=commitdiff_plain;h=e4052a38525e76c4802de67320360b6e9d4e7540 1.9.4 --- diff --git a/contrib/make_download b/contrib/make_download index 3b07687..d18a096 100755 --- a/contrib/make_download +++ b/contrib/make_download @@ -2,11 +2,8 @@ import sys string = sys.stdin.read() - import hashlib, os -version = "1.9.1" -version_win = "1.9" -version_mac = "1.9" +from versions import version, version_win, version_mac _tgz="Electrum-%s.tar.gz"%version _zip="Electrum-%s.zip"%version diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 684100c..640fb1a 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -912,14 +912,6 @@ class ElectrumWindow(QMainWindow): else: self.show_transaction(tx) - #filename = label + '.txn' if label else 'unsigned_%s.txn' % (time.mktime(time.gmtime())) - #try: - # fileName = self.getSaveFileName(_("Select a transaction filename"), filename, "*.txn") - # with open(fileName,'w') as f: - # f.write(json.dumps(tx.as_dict(),indent=4) + '\n') - # QMessageBox.information(self, _('Unsigned transaction created'), _("Unsigned transaction was saved to file:") + " " +fileName, _('OK')) - #except Exception: - # QMessageBox.warning(self, _('Error'), _('Could not write transaction to file'), _('OK')) # add recipient to addressbook if to_address not in self.wallet.addressbook and not self.wallet.is_mine(to_address): diff --git a/lib/version.py b/lib/version.py index 0430f4c..21582a2 100644 --- a/lib/version.py +++ b/lib/version.py @@ -1,4 +1,4 @@ -ELECTRUM_VERSION = "1.9.3" # version of the client package +ELECTRUM_VERSION = "1.9.4" # version of the client package PROTOCOL_VERSION = '0.6' # protocol version requested SEED_VERSION = 6 # bump this every time the seed generation is modified SEED_PREFIX = '01' # the hash of the mnemonic seed must begin with this