Skip to content

Commit ff150e1

Browse files
committed
Update version as stable
1 parent e98d772 commit ff150e1

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BitcoinZ Wallet 2.0.8-rc1
1+
# BitcoinZ Wallet 2.0.8
22

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

src/build/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100

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

src/java/com/bitcoinz/btczui/AboutDialog.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{
8686
" |____/ | | | |/ / / / \\ \\| | | |\\ | | / / \\ \\ /\\ / / _` | | |/ _ \\ __| | | || | \n" +
8787
" | ___ \\| |_ | |\\ \\__ \\ \\_/ /| |_ | | \\ | / /_ \\ V V / (_| | | | __/ |_| |_| || | \n" +
8888
" |_____/____| |_| \\____|\\___/_____||_| \\_|/____| \\_/\\_/ \\__,_|_|_|\\___|\\__|\\___/|___| \n" +
89-
" Version 2.0.8-rc1 \n \n" +
89+
" Version 2.0.8 \n \n" +
9090

9191
" Copyright (c) 2017-2022 BitcoinZ team \n" +
9292
" Copyright (c) 2016-2018 Ivan Vaklinov &lt;ivan@vaklinov.com&gt; \n" +
@@ -128,7 +128,7 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{
128128
aboutNORTH_CENTER.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
129129
aboutNORTH_CENTER.setText(
130130
"<html><b><span style='font-weight:bold;font-size:2.3em'>" +
131-
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8-rc1</html>");
131+
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8</html>");
132132

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

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

187187
"<b><u>v2.0.7-u3 (MAY-2022)</u></b><br>"+

src/java/com/bitcoinz/btczui/BtczUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public class BtczUI
116116
public BtczUI(StartupProgressDialog progressDialog)
117117
throws IOException, InterruptedException, WalletCallException
118118
{
119-
super("BitcoinZ Wallet 2.0.8-rc1");
119+
super("BitcoinZ Wallet 2.0.8");
120120

121121
if (progressDialog != null)
122122
{

src/java/com/bitcoinz/btczui/StartupProgressDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public StartupProgressDialog(BTCZClientCaller clientCaller){
7474
contentPane.add(imageLabel, BorderLayout.NORTH);
7575
JLabel bitcoinzWalletLabel = new JLabel(
7676
"<html><b><span style=\"font-weight:bold;font-size:2.2em\">" +
77-
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8-rc1</html>");
77+
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.8</html>");
7878

7979
bitcoinzWalletLabel.setBorder(BorderFactory.createEmptyBorder(16, 16, 16, 16));
8080
// todo - place in a panel with flow center

src/resources/ubuntu-package/BitcoinZWallet.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Desktop Entry]
2-
Version=2.0.8-rc1
2+
Version=2.0.8
33
Name=BitcoinZ Wallet
44
Comment=BitcoinZ Desktop GUI Wallet (full node)
55
GenericName=BitcoinZ Wallet

src/resources/ubuntu-package/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: bitcoinz-wallet
2-
Version: 2.0.8-rc1
2+
Version: 2.0.8
33
Section: misc
44
Priority: low
55
Architecture: all

0 commit comments

Comments
 (0)