Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Address rendering fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
vaklinov committed Mar 8, 2018
1 parent 4a008a4 commit 949cd07
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

<target name="ubuntuPackage" depends="jar,copyothers">
<mkdir dir="${ubuntu.package.dir}"/>
<deb destfile="${ubuntu.package.dir}/zencash-desktop-gui-wallet_0.80.3_all.deb"
<deb destfile="${ubuntu.package.dir}/zencash-desktop-gui-wallet_0.80.5_all.deb"
control="${src.dir}/resources/ubuntu-package"
verbose="true">

Expand Down
2 changes: 1 addition & 1 deletion src/java/com/vaklinov/zcashui/DashboardPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ public SingleTransactionPanel(String[] transactionFeilds)
this.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.RAISED));

String destinationAddress = transactionFeilds[5];
if (destinationAddress.length() > 35)
if (destinationAddress.length() > 37)
{
destinationAddress = destinationAddress.substring(0, 37) + "...";
}
Expand Down
2 changes: 1 addition & 1 deletion src/java/com/vaklinov/zcashui/ZCashUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public class ZCashUI
public ZCashUI(StartupProgressDialog progressDialog)
throws IOException, InterruptedException, WalletCallException
{
super("ZENCash Desktop GUI Wallet 0.80.4");
super("ZENCash Desktop GUI Wallet 0.80.5");

if (progressDialog != null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/resources/ubuntu-package/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: zencash-desktop-gui-wallet
Version: 0.80.3
Version: 0.80.5
Section: misc
Priority: low
Architecture: all
Expand Down

0 comments on commit 949cd07

Please sign in to comment.