Author Topic: Light Wallet Beta Release  (Read 37934 times)

0 Members and 1 Guest are viewing this topic.

Offline liondani

  • Hero Member
  • *****
  • Posts: 3737
  • Inch by inch, play by play
    • View Profile
    • My detailed info
  • BitShares: liondani
  • GitHub: liondani
BitShares Smart
BitShares Snap
BitShares Tiny
BitShares Mini
BitShares Micro

Offline modprobe

Is it possible to register without a faucet ?

The fact that it sent some info to the faucet page which also has Google analytics makes me mad, lol

Not at present, but it is planned.

Offline fluxer555

  • Hero Member
  • *****
  • Posts: 749
    • View Profile
In terms of finding a name, what's the main benefit this client has to the user over the full client?

Speed?

BitShares Swift
(or 'Swift', or 'the Swift client')

BitShares Bolt
(or 'Bolt', or 'the Bolt client')

BitShares Go
(or 'Go', or 'the Go client')

BitShares Express
(or 'Express', or 'the Express client')


Small size?

BitShares Blade
(or 'Blade', or 'the Blade client')

BitShares Mini
(or 'Mini', or 'the Mini client')


Simplicity?

BitShares Zen
(or 'Zen', or 'the Zen client')

BitShares Basic
(or 'Basic', or 'the Basic client')


Pretaining to 'light'?

BitShares Lux
(or 'Lux', or 'the Lux client')

BitShares Photon
(or 'Photon', or 'the Photon client')

Offline vlight

  • Sr. Member
  • ****
  • Posts: 275
    • View Profile
  • BitShares: vlight
Is it possible to register without a faucet ?

The fact that it sent some info to the faucet page which also has Google analytics makes me mad, lol

Offline Pheonike

BitShares Air Wallet
BitShares Sky Wallet
BitShares Breeze Wallet
BitShares Breeze Wallet

Offline clayop

  • Hero Member
  • *****
  • Posts: 2033
    • View Profile
    • Bitshares Korea
  • BitShares: clayop
@cgafeng can you make an installer version for non-technical people? I really appreciate for your effort :)
Bitshares Korea - http://www.bitshares.kr
Vote for me and see Korean Bitshares community grows
delegate-clayop

Offline Akado

  • Hero Member
  • *****
  • Posts: 2752
    • View Profile
  • BitShares: akado
Technically, "lite" is just an abbreviated version of "light". They do mean the same thing. But "lite wallet" is not a proper name either, and "BitShares Lite" sounds a bit like a diet soft drink. I'm saving the renaming efforts for when I have a really good name. Suggestions welcome. :)

BitShares Slim
MyBitShares
BitShares Go

..taking into account he blue and light theme

BitShares Sails
BitShares Cerulean
BitShares Azure
BitShares Flow
https://metaexchange.info | Bitcoin<->Altcoin exchange | Instant | Safe | Low spreads

Offline modprobe

Thanks again, @cgafeng! :) Have you tried just deleting qmlsettingsplugind.dll? It's a debug library (that's what the 'd' at the end of the name means) so if the light wallet isn't using the debug libs, you should be fine without it. That should make Comodo shut up. Haha

Offline modprobe

Technically, "lite" is just an abbreviated version of "light". They do mean the same thing. But "lite wallet" is not a proper name either, and "BitShares Lite" sounds a bit like a diet soft drink. I'm saving the renaming efforts for when I have a really good name. Suggestions welcome. :)

Offline cgafeng

BTC:1EYwcZ9cYVj6C9LMLafdcjK9wicVMDV376

Offline joele

  • Sr. Member
  • ****
  • Posts: 467
    • View Profile

Just a note, The wallet should be called Lite not Light. Different meanings.
+5%

Offline Pheonike


Just a note, The wallet should be called Lite not Light. Different meanings.

 

Offline modprobe

I've just posted a fresh OSX binary, containing all of the bugfixes so far. It's available in the OP. If you have a Mac, please download it and let me know if any of the bugs reported so far are still present.

Thanks!

Offline modprobe

Oh, blast it all. My server crashed. That's why it's failing. Hahaha

Sorry about that. Should be back up again now.

The blob in the error output seems to be badly converted chinese, not a dump of RAM as I'd feared. I'll try to get that fixed as well. Thanks!

Offline cgafeng

@cgafeng: OK, the last sync block was uninitialized. Good catch. I've fixed that. :)

As to the inability to connect to the server... That's weird, particularly since it works some times and not others. Could it be the GFW tampering with the connections? Can you get the CLI output when it fails to connect? I'll look into the blobs appearing in the error messages; that definitely should not happen.

I don't know what you mean about the CLI output, when debug code there are exception on rpc_client_impl::connect_to:
https://github.com/BitShares/bitshares/blob/a076a652444ff8d0b6d871635f870a1fcbe05d06/libraries/rpc/rpc_client.cpp#L49
Code: [Select]
    void rpc_client_impl::connect_to(const fc::ip::endpoint& remote_endpoint,
                                     const bts::blockchain::public_key_type& remote_public_key)
    {
       fc::buffered_istream_ptr buffered_istream;
       fc::buffered_ostream_ptr buffered_ostream;

       if( remote_public_key != bts::blockchain::public_key_type() )
       {
          net::stcp_socket_ptr socket = std::make_shared<bts::net::stcp_socket>();

          try
          {
             socket->connect_to(remote_endpoint);
          }
          catch ( const fc::exception& e )
          {
             elog( "fatal: error opening RPC socket to endpoint ${endpoint}: ${e}", ("endpoint", remote_endpoint)("e", e.to_detail_string() ) );
             throw;
          }
          ......
}

the exception info is:
Code: [Select]
0 exception: unspecified
由于目标计算机积极拒绝,无法连接。
    {"message":"由于目标计算机积极拒绝,无法连接。"}
    asio  asio.cpp:59 fc::asio::detail::error_handler

I use the vpn and get the same result, so i think it's not cause by the GFW.
BTC:1EYwcZ9cYVj6C9LMLafdcjK9wicVMDV376