Skip to content

Commit

Permalink
1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RyuMaster committed Jul 13, 2022
1 parent 7335414 commit bca5951
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions installer/downloadchain.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
cd %1
echo "#############################"
echo "#############################"
echo "#############################"
echo " "
echo "Please wait while we download the blockchain and extract it."
echo " "
echo "This will take a few minutes depending upon your internet connection speed."
echo " "
echo "DO NOT CLOSE THIS WINDOW. IT WILL CLOSE AUTOMATICALLY WHEN DONE."
echo " "
echo "#############################"
echo "#############################"
echo "#############################"
curl.exe --progress-bar https://downloads.xaya.io/xaya_chain_xid_20190717.exe -O xaya_chain_xid_20190717.exe
xaya_chain_xid_20190717.exe -o"%appdata%\" -y
@RD /S /Q xaya_chain_xid_20190717.exe
4 changes: 2 additions & 2 deletions src/app/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</div>

<div class = "balancetext">{{'SOVERVIEW.BALANCE' | translate }}</div>
<div class = "balanceAMount">{{this.tBalance}}</div>
<div class = "currencyLevel">{{this.precisionText}}</div>
<div class = "balanceAMount">{{this.tBalance}}{{this.precisionText}}</div>
<div class = "currencyLevel"></div>
</div>

<div class = "walletversion">{{'SOVERVIEW.WALLETVERSION' | translate }}: {{this.tWalletVersion}}</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard/dashboard.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class DashboardComponent {

if(precision == null || precision == undefined)
{
precision =0;
precision = 0;
}

if(precision == 0)
Expand Down
Binary file modified src/assets/img/balancering.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bca5951

Please sign in to comment.