binaries update, coins list update, readme update

This commit is contained in:
Satinder Grewal 2017-08-25 05:47:32 +12:00
parent 3f14ec0a66
commit 084e40d6d4
10 changed files with 28 additions and 2 deletions

View File

@ -37,9 +37,18 @@ sudo npm install electron-prebuilt -g
#### **Build the App**
Refer to the original [electron-packager](https://github.com/electron-userland/electron-packager) repository for more detailed information.
##### Linux
Change directory to dexuglygui and execute the following command to build the Linux app
```shell
cd dexuglygui
electron-packager . --platform=linux --arch=x64 --out=build/ --buildVersion=VERSION_NUMBER_HERE --ignore=assets/bin/win64 --ignore=assets/bin/osx --overwrite
```
change architecture build parameter to ```--arch=x32``` for 32 bit build
##### OSX
Change directory to dexuglygui and execute the following command to build the OSX app
```shell
cd dexuglygui
electron-packager . --platform=darwin --arch=x64 --out=build/ --buildVersion=VERSION_NUMBER_HERE --ignore=assets/bin/win64 --ignore=assets/bin/linux64 --overwrite
```
```

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

BIN
gui/img/cryptologo/888.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
gui/img/cryptologo/arg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

BIN
gui/img/cryptologo/glt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

BIN
gui/img/cryptologo/zer.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -5,7 +5,9 @@ coin_select_options = `<optgroup label="Crytpo Coins">
<option data-content="<img src='img/cryptologo/btc.png' width='50px;'/> Bitcoin (BTC)" data-tokens="btc bitcoin ">BTC</option>
<option data-content="<img src='img/cryptologo/kmd.png' width='50px;'/> Komodo (KMD)" data-tokens="kmd komodo ">KMD</option>
<option data-content="<img src='img/cryptologo/888.png' width='50px'/> OctoCoin (888)" data-tokens="OctoCoin 888">888</option>
<option data-content="<img src='img/cryptologo/arc.png' width='50px'/> ArcticCoin (ARC)" data-tokens="ArcticCoin ARC">ARC</option>
<option data-content="<img src='img/cryptologo/ARG.png' width='50px'/> Argentum (ARG)" data-tokens="Argentum ARG">ARG</option>
<option data-content="<img src='img/cryptologo/bta.png' width='50px;'/> Bata (BTA)" data-tokens="Bata BTA">BTA</option>
<option data-content="<img src='img/cryptologo/bdl.png' width='50px;'/> Bitdeal (BDL)" data-tokens="Bitdeal BDL">BDL</option>
@ -22,6 +24,8 @@ coin_select_options = `<optgroup label="Crytpo Coins">
<option data-content="<img src='img/cryptologo/flo.png' width='50px'/> Florincoin (FLO)" data-tokens="Florincoin FLO">FLO</option>
<option data-content="<img src='img/cryptologo/game.png' width='50px'/> Gamecredits (GAME)" data-tokens="Gamecredits GAME">GAME</option>
<option data-content="<img src='img/cryptologo/glt.png' width='50px'/> GlobalToken (GLT)" data-tokens="GlobalToken GLT">GLT</option>
<option data-content="<img src='img/cryptologo/huc.png' width='50px'/> Huntercoin (HUC)" data-tokens="Huntercoin HUC">HUC</option>
<option data-content="<img src='img/cryptologo/hush.png' width='50px'/> Hushcoin (HUSH)" data-tokens="Hushcoin HUSH">HUSH</option>
<option data-content="<img src='img/cryptologo/i0c.png' width='50px'/> I0Coin (I0C)" data-tokens="I0Coin I0C">I0C</option>
@ -48,6 +52,7 @@ coin_select_options = `<optgroup label="Crytpo Coins">
<option data-content="<img src='img/cryptologo/vtc.png' width='50px'/> Vertcoin (VTC)" data-tokens="Vertcoin VTC">VTC</option>
<option data-content="<img src='img/cryptologo/via.png' width='50px'/> Viacoin (VIA)" data-tokens="Viacoin VIA">VIA</option>
<option data-content="<img src='img/cryptologo/zcl.png' width='50px'/> ZClassic (ZCL)" data-tokens="ZClassic ZCL">ZCL</option>
<option data-content="<img src='img/cryptologo/zer.png' width='50px'/> Zero (ZER)" data-tokens="Zero ZER">ZER</option>
<option data-content="<img src='img/cryptologo/zet.png' width='50px'/> Zetacoin (ZET)" data-tokens="Zetacoin ZET">ZET</option>
<option data-content="<img src='img/cryptologo/zec.png' width='50px'/> Zcash (ZEC)" data-tokens="Zcash ZEC">ZEC</option>
</optgroup>

View File

@ -1048,6 +1048,12 @@ function return_coin_name(coin) {
case 'BTC':
coin_name = 'Bitcoin';
break;
case '888':
coin_name = 'OctoCoin';
break;
case 'ARG':
coin_name = 'ArcticCoin';
break;
case 'REVS':
coin_name = 'REVS';
break;
@ -1063,6 +1069,9 @@ function return_coin_name(coin) {
case 'DGB':
coin_name = 'Digibyte';
break;
case 'GLT':
coin_name = 'GlobalToken';
break;
case 'MZC':
coin_name = 'Mazacoin';
break;
@ -1075,6 +1084,9 @@ function return_coin_name(coin) {
case 'UNO':
coin_name = 'Unobtanium';
break;
case 'ZER':
coin_name = 'Zero';
break;
case 'ZET':
coin_name = 'Zetacoin';
break;