electrum-nvc.git
10 years agoif you just run "pyrcc4 icons.qrc -o gui/icons_rc.py" as stated in the README, you...
Helmut K. C. Tessarek [Sat, 21 Dec 2013 00:52:01 +0000]
if you just run "pyrcc4 icons.qrc -o gui/icons_rc.py" as stated in the README, you get the following error when starting Electrum
Error: Could not import icons_rc.py, please generate it with: 'pyrcc4 icons.qrc -o gui/qt/icons_rc.py'

10 years agopartially revert code merged #481, brreaks old qt versions
ThomasV [Tue, 17 Dec 2013 21:20:24 +0000]
partially revert code merged #481, brreaks old qt versions

10 years agofix issue occuring with set_server
ThomasV [Tue, 17 Dec 2013 17:20:54 +0000]
fix issue occuring with set_server

10 years agofix: return None if user presses cancel
ThomasV [Tue, 17 Dec 2013 06:10:40 +0000]
fix: return None if user presses cancel

10 years agoinstallwizard: don't repeat same info
ThomasV [Tue, 17 Dec 2013 06:06:58 +0000]
installwizard: don't repeat same info

10 years agoclarify text
ThomasV [Tue, 17 Dec 2013 05:56:33 +0000]
clarify text

10 years agoadd password to script
ThomasV [Mon, 16 Dec 2013 21:19:23 +0000]
add password to script

10 years agoMerge pull request #481 from haakonn/master
ThomasV [Mon, 16 Dec 2013 20:38:28 +0000]
Merge pull request #481 from haakonn/master

Improve keyboard usability in Qt GUI

10 years agofix: pending_servers
ecdsa [Mon, 16 Dec 2013 19:07:35 +0000]
fix: pending_servers

10 years agofix typo
ecdsa [Mon, 16 Dec 2013 19:04:59 +0000]
fix typo

10 years agoexit wait_until_connected() when all servers have been tried
ecdsa [Mon, 16 Dec 2013 18:59:35 +0000]
exit wait_until_connected() when all servers have been tried

10 years agodon't set network.interface to None when disconnetced
ThomasV [Mon, 16 Dec 2013 18:18:57 +0000]
don't set network.interface to None when disconnetced

10 years agonetwork.pending_servers, to avoid connecting the same server multiple times
thomasv [Mon, 16 Dec 2013 17:17:44 +0000]
network.pending_servers, to avoid connecting the same server multiple times

10 years agocleanup code in network.py
thomasv [Mon, 16 Dec 2013 16:37:32 +0000]
cleanup code in network.py

10 years agoimprove 'peers' script
thomasv [Mon, 16 Dec 2013 15:26:49 +0000]
improve 'peers' script

10 years agogui: proper dialog for private keys (fixes issue #500)
thomasv [Mon, 16 Dec 2013 14:40:24 +0000]
gui: proper dialog for private keys (fixes issue #500)

10 years agoconfirmaion dialog if transaction fee is high
thomasv [Mon, 16 Dec 2013 14:16:10 +0000]
confirmaion dialog if transaction fee is high

10 years agoversion 1.9.6. also, reset seed_version in version.py
ThomasV [Sat, 14 Dec 2013 12:21:17 +0000]
version 1.9.6. also, reset seed_version in version.py

10 years agodetect if electrum is offline during wallet creation
ecdsa [Fri, 13 Dec 2013 06:30:35 +0000]
detect if electrum is offline during wallet creation

10 years agofix space
ThomasV [Sat, 14 Dec 2013 06:53:25 +0000]
fix space

10 years agoexchange rate plugin: keep thread running (fixes #494)
ThomasV [Sat, 14 Dec 2013 06:49:21 +0000]
exchange rate plugin: keep thread running (fixes #494)

10 years agoreplace exit with sys.exit
thomasv [Fri, 13 Dec 2013 16:53:13 +0000]
replace exit with sys.exit

10 years agoDuring wallet creation, do not write seed on disk before it is encrypted
thomasv [Fri, 13 Dec 2013 16:30:34 +0000]
During wallet creation, do not write seed on disk before it is encrypted

10 years agoexit gracefully if host cannot be resolved. Fixes #488
ThomasV [Fri, 13 Dec 2013 08:22:39 +0000]
exit gracefully if host cannot be resolved. Fixes #488

10 years agofix #492
ThomasV [Fri, 13 Dec 2013 05:29:51 +0000]
fix #492

10 years agoMerge pull request #499 from shunyata/bugfix/synchronizer-attribute-is-uninitialized
ThomasV [Thu, 12 Dec 2013 23:23:20 +0000]
Merge pull request #499 from shunyata/bugfix/synchronizer-attribute-is-uninitialized

wallet.synchronizer should exist at construction.

10 years agoMerge pull request #497 from pitchforks/pip-install-user
ThomasV [Thu, 12 Dec 2013 23:19:32 +0000]
Merge pull request #497 from pitchforks/pip-install-user

fix setup.py to make `pip install --user` possible in Linux

10 years agoMerge pull request #498 from shunyata/bugfix/old-param-in-update_password
ThomasV [Thu, 12 Dec 2013 23:18:31 +0000]
Merge pull request #498 from shunyata/bugfix/old-param-in-update_password

Remove an obsolete parameter.

10 years agowallet.synchronizer should exist at construction.
shunyata [Thu, 12 Dec 2013 22:36:17 +0000]
wallet.synchronizer should exist at construction.

The `self.synchronizer` attribute is accessed before it ever exists when using
`electrum importprivkey` on the command line. This change sets it to None,
which is a valid state, in the wallet's constructor.

10 years agoRemove an obsolete parameter.
shunyata [Thu, 12 Dec 2013 22:23:40 +0000]
Remove an obsolete parameter.

This was straight-up crashing before. Need more automated tests, I think. :/

10 years agofix setup.py to make `pip install --user` possible in Linux
pitchforks [Thu, 12 Dec 2013 16:14:32 +0000]
fix setup.py to make `pip install --user` possible in Linux

added one more fallback to a local directory inside user's HOME, because
/usr/share/electrum for Linux was hardcoded in lib/util.py - see function
appdata_dir()

10 years agofix offline signing with key>5
thomasv [Wed, 11 Dec 2013 10:45:32 +0000]
fix offline signing with key>5

10 years agoMerge pull request #491 from Jud/master
ThomasV [Tue, 10 Dec 2013 12:14:25 +0000]
Merge pull request #491 from Jud/master

Fix error when network.is_running() is called before the network is started.

10 years agoSet initial 'running' attribute in Network class
Jud Stephenson [Sun, 8 Dec 2013 22:08:06 +0000]
Set initial 'running' attribute in Network class

This was causing a AttributeError when network.is_running() was called before the network was started.

10 years agoabort export privkeys if wallet has no seed
ThomasV [Wed, 4 Dec 2013 17:06:07 +0000]
abort export privkeys if wallet has no seed

10 years agoMerge pull request #484 from flatfly/patch-1
ThomasV [Sun, 1 Dec 2013 14:06:41 +0000]
Merge pull request #484 from flatfly/patch-1

fix for getversion

10 years agofix for getversion
flatfly [Sun, 1 Dec 2013 13:38:27 +0000]
fix for getversion

i had pasted the wrong definition, sorry

10 years agoMerge pull request #483 from flatfly/patch-2
ThomasV [Sun, 1 Dec 2013 13:31:05 +0000]
Merge pull request #483 from flatfly/patch-2

added getversion command

10 years agoadded getversion command
flatfly [Sun, 1 Dec 2013 08:42:22 +0000]
added getversion command

10 years agoAdd a number of standard keyboard shortcuts to menu items in the Qt UI,
Haakon Nilsen [Sat, 30 Nov 2013 19:03:51 +0000]
Add a number of standard keyboard shortcuts to menu items in the Qt UI,
especially under the File menu. To make action names more conventional,
rename "Create/Restore" to "New/Restore", "Copy" to "Save Copy", and
"Close" to "Quit". This also resolves the situation where
Create/Restore, Copy and Close all had "C" as their mnemonic.

Also allow fast switching between tabs by using Alt+[1-5], same as
in tabbed web browsers. Ctrl+PgUp/PgDown is still available.

10 years agoMerge pull request #476 from shunyata/bugfix/parsing-error-in-csv-transaction
ThomasV [Sat, 30 Nov 2013 08:24:47 +0000]
Merge pull request #476 from shunyata/bugfix/parsing-error-in-csv-transaction

Bugfix/parsing error in csv transaction

10 years agoParse amounts from CSV with Decimal and not float.
shunyata [Fri, 29 Nov 2013 20:27:59 +0000]
Parse amounts from CSV with Decimal and not float.

This fixes a bug where amounts are read from a CSV file incorrectly due to
floating point representation error. For example, the string 0.009 will be
parsed as 0.00899999, and then converted to 899999, resulting in one fewer
satoshi being sent as part of the transaction generated from the CSV file.

10 years agoRemove trailing whitespace.
shunyata [Fri, 29 Nov 2013 20:27:48 +0000]
Remove trailing whitespace.

10 years agoMerge pull request #471 from Zomnut/master
ThomasV [Fri, 29 Nov 2013 16:41:25 +0000]
Merge pull request #471 from Zomnut/master

Fix for resetting options to default on program start when in portable mode

10 years agoFix for resetting options to default on program start when in portable mode.
Zomnut [Fri, 29 Nov 2013 14:50:54 +0000]
Fix for resetting options to default on program start when in portable mode.

10 years agoMerge pull request #467 from thgh/trayfix
ThomasV [Thu, 28 Nov 2013 08:43:23 +0000]
Merge pull request #467 from thgh/trayfix

Fix: hide tray icon on close

10 years agoFix: hide tray icon on close
thgh [Wed, 27 Nov 2013 22:50:31 +0000]
Fix: hide tray icon on close

10 years agoMerge pull request #462 from imrehg/posfix
ThomasV [Tue, 26 Nov 2013 05:43:04 +0000]
Merge pull request #462 from imrehg/posfix

pointofsale: generated bitcoin url might contain invalid characters

10 years agopointofsale: generated bitcoin url might contain invalid characters
Gergely Imreh [Tue, 26 Nov 2013 04:31:50 +0000]
pointofsale: generated bitcoin url might contain invalid characters

The bitcoin invoice url generated for the QR code might contain illegal
characters because the labels can have any text. In default it already
contains spaces (ie. the naming convention "Invoice - 0001").

The invalid URL did confuse e.g. the Bitcoin Wallet Android app, that
couldn't read bitcoin addresses from the generated QR code.

This is fixed by escaping the label text before displaying it as a
QR code.

10 years agoMerge pull request #459 from rdymac/patch-5
ThomasV [Mon, 25 Nov 2013 13:38:26 +0000]
Merge pull request #459 from rdymac/patch-5

Changed - to _ as mentioned in #458

10 years agofix bug in mki18n.py
thomasv [Mon, 25 Nov 2013 14:07:27 +0000]
fix bug in mki18n.py

10 years agoChanged - to _ as mentioned in #458
rdymac [Mon, 25 Nov 2013 13:17:44 +0000]
Changed - to _ as mentioned in #458

Changed - to _ as mentioned in #458

10 years agoupdate web script
ThomasV [Sat, 23 Nov 2013 14:47:00 +0000]
update web script

10 years agohandle multiple selections in receive_menu hook
ThomasV [Sat, 23 Nov 2013 09:38:02 +0000]
handle multiple selections in receive_menu hook

10 years agoMerge pull request #453 from tkhaew/master
ThomasV [Sat, 23 Nov 2013 09:24:28 +0000]
Merge pull request #453 from tkhaew/master

Add addr value to receive menu hook

10 years agoUpdate point of sale plugin for menu hook
tkhaew [Sat, 23 Nov 2013 09:20:14 +0000]
Update point of sale plugin for menu hook

10 years agoAdd addr value to receive menu hook
tkhaew [Sat, 23 Nov 2013 08:18:26 +0000]
Add addr value to receive menu hook

10 years agorelease notes
ThomasV [Fri, 22 Nov 2013 17:13:28 +0000]
release notes

10 years agoremove prioritize altogether.
ThomasV [Fri, 22 Nov 2013 15:55:43 +0000]
remove prioritize altogether.

10 years agoversion 195
ThomasV [Fri, 22 Nov 2013 14:53:50 +0000]
version 195

10 years agoremove translation_id
thomasv [Fri, 22 Nov 2013 12:45:40 +0000]
remove translation_id

10 years agoMerge pull request #452 from rdymac/master
ThomasV [Fri, 22 Nov 2013 12:48:04 +0000]
Merge pull request #452 from rdymac/master

pt-PT Portuguese

10 years agopt-PT Portuguese
rdymac [Fri, 22 Nov 2013 12:45:03 +0000]
pt-PT Portuguese

pt-PT Portuguese

10 years agorevert old address grayout
thomasv [Fri, 22 Nov 2013 12:40:19 +0000]
revert old address grayout

10 years agoMerge branch 'used' of github.com:wozz/electrum into wozz-used
thomasv [Fri, 22 Nov 2013 12:36:02 +0000]
Merge branch 'used' of github.com:wozz/electrum into wozz-used

10 years agoMerge pull request #449 from thgh/move-to-crowdin
ThomasV [Fri, 22 Nov 2013 11:03:59 +0000]
Merge pull request #449 from thgh/move-to-crowdin

Move to Crowdin platform

10 years agoremove 'prioritize' from qt gui, superseded by coin control
thomasv [Fri, 22 Nov 2013 10:26:11 +0000]
remove 'prioritize' from qt gui, superseded by coin control

10 years agoMove to Crowdin platform
thgh [Thu, 21 Nov 2013 18:44:45 +0000]
Move to Crowdin platform

10 years agoMerge pull request #435 from Coin-Escrow/master
ThomasV [Wed, 20 Nov 2013 06:46:02 +0000]
Merge pull request #435 from Coin-Escrow/master

more strings, see issue 434

10 years agofix default value in storage.get
ThomasV [Wed, 20 Nov 2013 06:37:14 +0000]
fix default value in storage.get

10 years agoMerge pull request #442 from atanasi/atanasi
ThomasV [Tue, 19 Nov 2013 09:55:32 +0000]
Merge pull request #442 from atanasi/atanasi

Allow password to have non-ASCII characters

10 years agoAllow password to have non-ASCII characters
Juho Östman [Mon, 18 Nov 2013 21:31:45 +0000]
Allow password to have non-ASCII characters

10 years agomore strings, see issue 434
Coin-Escrow [Sun, 17 Nov 2013 10:42:10 +0000]
more strings, see issue 434

10 years agoMerge pull request #431 from Coin-Escrow/master
ThomasV [Sat, 16 Nov 2013 18:27:42 +0000]
Merge pull request #431 from Coin-Escrow/master

Full Italian translation

10 years agoFull Italian translation
Coin-Escrow [Sat, 16 Nov 2013 17:44:59 +0000]
Full Italian translation

10 years agoMerge pull request #430 from wozz/POS
ThomasV [Sat, 16 Nov 2013 15:12:38 +0000]
Merge pull request #430 from wozz/POS

point of sale plugin set amount to None if the exchanger fails

10 years agopoint of sale plugin set amount to None if the exchanger fails
Michael Wozniak [Sat, 16 Nov 2013 15:09:48 +0000]
point of sale plugin set amount to None if the exchanger fails

10 years agofix kazcw's PR
ThomasV [Sat, 16 Nov 2013 15:02:38 +0000]
fix kazcw's PR

10 years agoclean up sending address input
kazcw [Fri, 15 Nov 2013 04:07:25 +0000]
clean up sending address input

in particular fee calculation was off for send-from

10 years agocorrect right-click menu during multiple-select
kazcw [Fri, 15 Nov 2013 02:10:52 +0000]
correct right-click menu during multiple-select

Correct right-click menu during multiple-select in Receive

10 years agoselect addresses to send from
kazcw [Fri, 15 Nov 2013 01:05:45 +0000]
select addresses to send from

based on branch by bkkcoins

10 years agofix self.amount in POS plugin
ThomasV [Sat, 16 Nov 2013 09:44:11 +0000]
fix self.amount in POS plugin

10 years agodo not show used addresses if there are not any
Michael Wozniak [Sat, 16 Nov 2013 04:22:47 +0000]
do not show used addresses if there are not any

10 years agomove used addresses to a collapsed section
Michael Wozniak [Sat, 16 Nov 2013 04:11:00 +0000]
move used addresses to a collapsed section

10 years agoMerge pull request #422 from thgh/master
ThomasV [Fri, 15 Nov 2013 09:19:36 +0000]
Merge pull request #422 from thgh/master

Old addresses on receive tab grayed out

10 years agoUndo reverse list
thgh [Thu, 14 Nov 2013 14:55:21 +0000]
Undo reverse list

10 years agoOld addresses on receive tab grayed out
thgh [Thu, 14 Nov 2013 13:07:44 +0000]
Old addresses on receive tab grayed out

10 years agoon sl error: print exception inside for loop, and do not continue the loop
ThomasV [Thu, 14 Nov 2013 08:23:38 +0000]
on sl error: print exception inside for loop, and do not continue the loop

10 years agoMerge pull request #419 from wozz/POS
ThomasV [Thu, 14 Nov 2013 05:57:05 +0000]
Merge pull request #419 from wozz/POS

POS Plugin Update

10 years agofix for issue #417, adds new column for requested amount
Michael Wozniak [Thu, 14 Nov 2013 04:48:47 +0000]
fix for issue #417, adds new column for requested amount

also adds a menu option to display the invoice again if it's been closed

10 years agoMerge pull request #414 from 3M3RY/IPv6
ThomasV [Wed, 13 Nov 2013 19:50:44 +0000]
Merge pull request #414 from 3M3RY/IPv6

IPv6 support

10 years agoIPv6 support
Emery Hemingway [Wed, 13 Nov 2013 19:35:35 +0000]
IPv6 support

10 years agoMerge pull request #410 from thgh/patch-1
ThomasV [Wed, 13 Nov 2013 18:03:03 +0000]
Merge pull request #410 from thgh/patch-1

Update help text about tx fee

10 years agoUpdate help text about tx fee
thgh [Wed, 13 Nov 2013 17:24:59 +0000]
Update help text about tx fee

Updating the recommended value to the default value. (0.0002)

10 years agoMerge pull request #408 from wozz/URI-update
Maran [Wed, 13 Nov 2013 12:43:20 +0000]
Merge pull request #408 from wozz/URI-update

Mac OSX bitcoin: URI updates

10 years agoMac OSX bitcoin: URI updates
Michael Wozniak [Wed, 13 Nov 2013 11:59:36 +0000]
Mac OSX bitcoin: URI updates

10 years agoMerge pull request #404 from WyseNynja/flake8_electrum
ThomasV [Wed, 13 Nov 2013 06:28:11 +0000]
Merge pull request #404 from WyseNynja/flake8_electrum

flake8 cleanup of ./electrum

10 years agoMerge pull request #405 from WyseNynja/flake8_setup
ThomasV [Wed, 13 Nov 2013 06:26:15 +0000]
Merge pull request #405 from WyseNynja/flake8_setup

flake8 cleanup of ./setup*

10 years agoMerge pull request #406 from WyseNynja/flake8_contrib
ThomasV [Wed, 13 Nov 2013 06:24:58 +0000]
Merge pull request #406 from WyseNynja/flake8_contrib

Flake8 contrib

10 years agoflake8 cleanup of contrib/make_download
Bryan Stitt [Wed, 13 Nov 2013 05:11:22 +0000]
flake8 cleanup of contrib/make_download