commit f21143a4e6f5d9265e85110bb83d6027e4e68c24
parent c07832a1fe7a89fc3e55953a261d1907b0110e40
Author: thomasv <thomasv@gitorious>
Date: Tue, 12 Jun 2012 13:52:37 +0200
Merge branch 'master' of gitorious.org:electrum/electrum
Diffstat:
3 files changed, 14 insertions(+), 26 deletions(-)
diff --git a/README b/README
@@ -3,47 +3,33 @@ Electrum - lightweight Bitcoin client
Licence: GNU GPL v3
Author: thomasv@gitorious
Language: Python
+Homepage: http://ecdsa.org/electrum
-Features:
-* Encrypted wallet: the file that contains your bitcoins is protected with a password. You are protected from thieves.
-* Deterministic key generation: If you lose your wallet, you can recover it from its seed. You are protected from your own mistakes.
-* No blockchain download: the client requests blockchain information from a server. No delays, always up-to-date.
-* Transactions are signed locally: Your private keys are not shared with the server. You do not have to trust the server with your money.
-* Privacy: The server does not know you, it does not store user accounts. You are not tied to a particular server.
-* No single point of failure: The server code is open source, anyone can run a server.
-* Firewall friendly: The client does not need to open a port, it simply polls the server for updates.
-* Open Source: Anyone can audit the code.
-* Python. Very compact code, easy to contribute.
-
-
-INSTALL
-
-To install Electrum, type:
+== INSTALL ==
sudo python setup.py install
-RUN
+== RUN ==
To start Electrum in GUI mode, type:
electrum
+== HELP ==
-If arguments are passed to the command line, Electrum will run in text mode:
-
- electrum balance
- electrum help
-
+Up-to-date information and documentation is on the wiki:
+https://en.bitcoin.it/wiki/Electrum
-HELP
+== HOW OFFICIAL PACKAGES ARE CREATED ==
-the most up-to-date information is on the wiki:
-https://en.bitcoin.it/wiki/Electrum
+python mki18n.py
+pyrcc4 icons.qrc -o lib/icons_rc.py
+python setup.py sdist --format=zip,gztar
-BROWSER CONFIGURATION
+== BROWSER CONFIGURATION ==
see http://ecdsa.org/bitcoin_URIs.html
diff --git a/lib/version.py b/lib/version.py
@@ -1,2 +1,3 @@
ELECTRUM_VERSION = "0.57c"
SEED_VERSION = 4 # bump this everytime the seed generation is modified
+TRANSLATION_ID = 27601 # version of the wiki page
diff --git a/mki18n.py b/mki18n.py
@@ -1,8 +1,9 @@
#!/usr/bin/python
import urllib2, os
+from lib.version import TRANSLATION_ID
-url = "https://en.bitcoin.it/wiki/Electrum/Translation?action=raw"
+url = "https://en.bitcoin.it/w/index.php?title=Electrum/Translation&oldid=%d&action=raw"%TRANSLATION_ID
f = urllib2.urlopen(url)
lines = f.readlines()
dicts = {}