Bitcoin Forum
April 27, 2024, 09:28:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 [50] 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 »
  Print  
Author Topic: [ANNOUNCE] Electrum - Lightweight Bitcoin Client  (Read 274473 times)
HostFat
Staff
Legendary
*
Offline Offline

Activity: 4214
Merit: 1203


I support freedom of choice


View Profile WWW
July 25, 2012, 05:13:21 PM
 #981

You should install google analytics on your website Smiley

NON DO ASSISTENZA PRIVATA - http://hostfatmind.com
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714210131
Hero Member
*
Offline Offline

Posts: 1714210131

View Profile Personal Message (Offline)

Ignore
1714210131
Reply with quote  #2

1714210131
Report to moderator
1714210131
Hero Member
*
Offline Offline

Posts: 1714210131

View Profile Personal Message (Offline)

Ignore
1714210131
Reply with quote  #2

1714210131
Report to moderator
Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
July 26, 2012, 08:22:20 AM
 #982

I'm working with Genjix to spice up the new lite GUI.

New style


Old style


You can test out the new style in the 'new-layout' branch on Gitorious. I'm mostly wondering if it renders the same across all OS's. The reference screenshot was taken on OSX.

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
bitcats
Legendary
*
Offline Offline

Activity: 1014
Merit: 1001



View Profile
July 26, 2012, 09:53:43 AM
 #983

Awesome! I like that design Tongue

"Unser Problem ist nicht ziviler Ungehorsam, unser Problem ist ziviler Gehorsam."  - Howard Zinn
ben-abuya
Sr. Member
****
Offline Offline

Activity: 323
Merit: 250



View Profile WWW
July 26, 2012, 02:17:02 PM
 #984

I'm working with Genjix to spice up the new lite GUI.

New style


Old style


You can test out the new style in the 'new-layout' branch on Gitorious. I'm mostly wondering if it renders the same across all OS's. The reference screenshot was taken on OSX.

+1

http://lamassubtc.com/
Lamassu Bitcoin Ventures
molecular
Donator
Legendary
*
Offline Offline

Activity: 2772
Merit: 1019



View Profile
July 26, 2012, 02:48:15 PM
 #985

I'm working with Genjix to spice up the new lite GUI.

New style


Old style


You can test out the new style in the 'new-layout' branch on Gitorious. I'm mostly wondering if it renders the same across all OS's. The reference screenshot was taken on OSX.

+1

phew, on first look I thought it was the other way around. good thing it's not Wink

PGP key molecular F9B70769 fingerprint 9CDD C0D3 20F8 279F 6BE0  3F39 FC49 2362 F9B7 0769
flatfly
Legendary
*
Offline Offline

Activity: 1078
Merit: 1011

760930


View Profile
July 26, 2012, 03:00:07 PM
 #986

I like it too.
This is how it looks on Win XP (classic theme):

flatfly
Legendary
*
Offline Offline

Activity: 1078
Merit: 1011

760930


View Profile
July 26, 2012, 03:03:41 PM
 #987

You should install google analytics on your website Smiley

I do have GA on my page, but it should actually be installed on ThomasV's site to
provide some useful information, as all I can see in my referrers is ecdsa.org... Smiley

That said, I'm not  a huge fan of GA. It doesn't seem to work that well, for me at least.
But perhaps it's just me doing something wrong, but no time to investigate this for now.
Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
July 26, 2012, 03:33:43 PM
 #988

I like it too.
This is how it looks on Win XP (classic theme):

Ugh, it looks way worse then the OSX gui. Some differences I noticed right away:

  • Horrible font rendering (BTC amount)
  • Different spacing between elements
  • Inactive state for the send button doesn't apply the right font color

I wonder if it's the same on Windows 7, could anybody get a build running on 7?

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
DiThi
Full Member
***
Offline Offline

Activity: 156
Merit: 100

Firstbits: 1dithi


View Profile
July 30, 2012, 05:35:19 PM
 #989

Hello!

My fromaddr/changeaddr feature I added in february no longer works. Here's a patch:

Code:
diff --git a/electrum b/electrum
index d927860..0c9c234 100755
--- a/electrum
+++ b/electrum
@@ -439,10 +439,12 @@ if __name__ == '__main__':
             else:
                 keypair = from_addr
                 from_addr = keypair.split(':')[0]
-            if not wallet.import_key(keypair,password):
-                print_error("Error: Invalid key pair")
-                exit(1)
-            wallet.history[from_addr] = interface.retrieve_history(from_addr)
+            wallet.import_key(keypair,password)
+            
+            wallet.interface.get_history(from_addr)
+            print "Waiting for history (warning: this won't timeout)"
+            while not from_addr in wallet.history:
+                sleep(0.1)
             wallet.update_tx_history()
             change_addr = from_addr
 


Is the wallet saved automatically now? If I hit ctrl+C while waiting for the history it seems it's saved...

1DiThiTXZpNmmoGF2dTfSku3EWGsWHCjwt
flatfly
Legendary
*
Offline Offline

Activity: 1078
Merit: 1011

760930


View Profile
August 01, 2012, 11:17:51 AM
 #990

I like it too.
This is how it looks on Win XP (classic theme):

Ugh, it looks way worse then the OSX gui. Some differences I noticed right away:

  • Horrible font rendering (BTC amount)
  • Different spacing between elements
  • Inactive state for the send button doesn't apply the right font color

I wonder if it's the same on Windows 7, could anybody get a build running on 7?

Don't worry about the font rendering on Windows.
I found the cause of the ugly rendering in that screenshot: the font anti-aliasing
setting had been turned off (system-wide) on that test machine. The default setting is ON. Here's a new screenshot (XP). I really like the improvements and simplification of the UI. Some things still need further tweaking (menu bar width, element spacing).



 
ErebusBat
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500

I am the one who knocks


View Profile
August 01, 2012, 02:47:37 PM
 #991

OSX Instructions?

I see some people are running in on mac, but can't get it running on mine.

░▒▓█ Coinroll.it - 1% House Edge Dice Game █▓▒░ • Coinroll Thread • *FREE* 100 BTC Raffle

Signup for CEX.io BitFury exchange and get GHS Instantly!  Don't wait for shipping, mine NOW!
Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
August 01, 2012, 06:29:49 PM
 #992

OSX Instructions?

I see some people are running in on mac, but can't get it running on mine.

If you can come by IRC (#electrum on freenode) I can help you with any problem you might have Smiley

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
August 02, 2012, 02:38:11 PM
 #993

Thanks to the scripts Coblee build it is now possible to generate .dmg files for OSX. The problem though is that the behaviour has been a bit inconsistant.

If you are on OSX or have access to a computer running it please try downloading this file.

Please report back if it works and what the GUI looks like (Black or White).

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
DutchBrat
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000


View Profile
August 02, 2012, 03:11:01 PM
 #994

'You can't open the application Electrum because it is not supported on this type of Mac.'

I have a MacBookPro running OS X v10.6.8

Intel 2.16GHz Core Duo

2GB 667 MHz DDr2 SDRAM

Hope that helps, although it is NOT what you were expecting Wink
Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
August 02, 2012, 04:12:16 PM
 #995

'You can't open the application Electrum because it is not supported on this type of Mac.'

I have a MacBookPro running OS X v10.6.8

Intel 2.16GHz Core Duo

2GB 667 MHz DDr2 SDRAM

Hope that helps, although it is NOT what you were expecting Wink

Thanks! OSX 10.6 is 32Bit and I'm guessing this is 64bit only binary, good to know! I will see what I can do about that Smiley

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
ErebusBat
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500

I am the one who knocks


View Profile
August 02, 2012, 06:11:04 PM
 #996

OSX Instructions?

I see some people are running in on mac, but can't get it running on mine.

If you can come by IRC (#electrum on freenode) I can help you with any problem you might have Smiley

Also for those who are interested, here is the basic outline that Tachikoma gave me that worked:
Code:
# Install HomeBrew (http://mxcl.github.com/homebrew/)

# This installs app required dependencies and a rather old version of Electrum
brew tap maran/homebrew
brew install electrum

# Check out the newest branch (which can be ran from anywhere)
mkdir -p ~/src
cd ~/src
git clone https://github.com/Spesmilo/Electrum.git
cd electrum
./electrum &

Tachikoma is working on an actual OSX package that should hopefully make that a lot less painful, but in the mean time those are the steps that worked for me.

░▒▓█ Coinroll.it - 1% House Edge Dice Game █▓▒░ • Coinroll Thread • *FREE* 100 BTC Raffle

Signup for CEX.io BitFury exchange and get GHS Instantly!  Don't wait for shipping, mine NOW!
Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
August 02, 2012, 06:41:50 PM
 #997

'You can't open the application Electrum because it is not supported on this type of Mac.'

I have a MacBookPro running OS X v10.6.8

Intel 2.16GHz Core Duo

2GB 667 MHz DDr2 SDRAM

Hope that helps, although it is NOT what you were expecting Wink

Thanks! OSX 10.6 is 32Bit and I'm guessing this is 64bit only binary, good to know! I will see what I can do about that Smiley

I failed so far to build a 32Bit binary because my python version only has 64Bit support. In order to build a 32bit package I need to use the default installation of python but I can't revert that. I am looking into the option of setting up a VM so I can build both arches.

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
August 02, 2012, 08:30:56 PM
 #998

'You can't open the application Electrum because it is not supported on this type of Mac.'

I have a MacBookPro running OS X v10.6.8

Intel 2.16GHz Core Duo

2GB 667 MHz DDr2 SDRAM

Hope that helps, although it is NOT what you were expecting Wink

Could you please give this binary a go?

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
DutchBrat
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000


View Profile
August 03, 2012, 09:05:37 AM
 #999

Sorry about that, I was fast asleep Wink

I tried the img but it failed, I made a pastebin of the error log http://pastebin.com/rnqaAAT7

Tachikoma
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000



View Profile WWW
August 03, 2012, 09:25:08 AM
 #1000

Sorry about that, I was fast asleep Wink

I tried the img but it failed, I made a pastebin of the error log http://pastebin.com/rnqaAAT7



Thanks! This will help Smiley

Electrum: the convenience of a web wallet, without the risks | Bytesized Seedboxes BTC/LTC supported
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 [50] 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!