Skip to content

Commit

Permalink
Update version as stable
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelusCH committed Sep 3, 2022
1 parent e98d772 commit ff150e1
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BitcoinZ Wallet 2.0.8-rc1
# BitcoinZ Wallet 2.0.8

[Download here](https://github.com/btcz/bitcoinz-wallet/releases)

Expand Down
2 changes: 1 addition & 1 deletion src/build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@

<target name="ubuntuPackage" depends="jar,copyothers">
<mkdir dir="${ubuntu.package.dir}"/>
<deb destfile="${ubuntu.package.dir}/bitcoinz-wallet_2.0.8-rc1.deb"
<deb destfile="${ubuntu.package.dir}/bitcoinz-wallet_2.0.8.deb"
control="${src.dir}/resources/ubuntu-package"
verbose="true">

Expand Down
6 changes: 3 additions & 3 deletions src/java/com/bitcoinz/btczui/AboutDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{
" |____/ | | | |/ / / / \\ \\| | | |\\ | | / / \\ \\ /\\ / / _` | | |/ _ \\ __| | | || | \n" +
" | ___ \\| |_ | |\\ \\__ \\ \\_/ /| |_ | | \\ | / /_ \\ V V / (_| | | | __/ |_| |_| || | \n" +
" |_____/____| |_| \\____|\\___/_____||_| \\_|/____| \\_/\\_/ \\__,_|_|_|\\___|\\__|\\___/|___| \n" +
" Version 2.0.8-rc1 \n \n" +
" Version 2.0.8 \n \n" +

" Copyright (c) 2017-2022 BitcoinZ team \n" +
" Copyright (c) 2016-2018 Ivan Vaklinov &lt;[email protected]&gt; \n" +
Expand Down Expand Up @@ -128,7 +128,7 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{
aboutNORTH_CENTER.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
aboutNORTH_CENTER.setText(
"<html><b><span style='font-weight:bold;font-size:2.3em'>" +
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8-rc1</html>");
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8</html>");

// About description
JLabel aboutCENTER = new JLabel();
Expand Down Expand Up @@ -181,7 +181,7 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{
"<html>" +
"<div style='display: table; padding: 10px; height: 400px; max-width: 600px; overflow: hidden;'> " +

"<b><u>v2.0.8-rc1 (JUL-2022)</u></b><br>"+
"<b><u>v2.0.8 (SEP-2022)</u></b><br>"+
"- Added Viewing key import and usage. <br><br>"+

"<b><u>v2.0.7-u3 (MAY-2022)</u></b><br>"+
Expand Down
2 changes: 1 addition & 1 deletion src/java/com/bitcoinz/btczui/BtczUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public class BtczUI
public BtczUI(StartupProgressDialog progressDialog)
throws IOException, InterruptedException, WalletCallException
{
super("BitcoinZ Wallet 2.0.8-rc1");
super("BitcoinZ Wallet 2.0.8");

if (progressDialog != null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/java/com/bitcoinz/btczui/StartupProgressDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public StartupProgressDialog(BTCZClientCaller clientCaller){
contentPane.add(imageLabel, BorderLayout.NORTH);
JLabel bitcoinzWalletLabel = new JLabel(
"<html><b><span style=\"font-weight:bold;font-size:2.2em\">" +
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8-rc1</html>");
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8</html>");

bitcoinzWalletLabel.setBorder(BorderFactory.createEmptyBorder(16, 16, 16, 16));
// todo - place in a panel with flow center
Expand Down
2 changes: 1 addition & 1 deletion src/resources/ubuntu-package/BitcoinZWallet.desktop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Desktop Entry]
Version=2.0.8-rc1
Version=2.0.8
Name=BitcoinZ Wallet
Comment=BitcoinZ Desktop GUI Wallet (full node)
GenericName=BitcoinZ Wallet
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: bitcoinz-wallet
Version: 2.0.8-rc1
Version: 2.0.8
Section: misc
Priority: low
Architecture: all
Expand Down

0 comments on commit ff150e1

Please sign in to comment.