Skip to content

Commit

Permalink
bump version to 2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzygarmyz committed Aug 27, 2024
1 parent 94cd5b2 commit e163085
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 11 deletions.
11 changes: 11 additions & 0 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,15 @@
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1724756472123</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BitcoinZ Wallet 2.0.8
# BitcoinZ Wallet 2.0.10

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

Expand Down Expand Up @@ -83,7 +83,7 @@ The details of how to build it are described below (easy to follow).

3.1. If you have built BitcoinZ from source code:

Assuming you have already built from source code [BitcoinZ](https://github.com/btcz/bitcoinz) in directory `/home/user/bitcoinz/src` (for example - this is the typical build dir. for bitcoinz v2.0.8) which contains the command line tools `bitcoinz-cli` and `bitcoinzd` you need to take the created file `./build/jars/BitcoinZWallet.jar` and copy it to directory `/home/user/bitcoinz/src` (the same dir. that contains `bitcoinz-cli` and `bitcoinzd`). Example copy command:
Assuming you have already built from source code [BitcoinZ](https://github.com/btcz/bitcoinz) in directory `/home/user/bitcoinz/src` (for example - this is the typical build dir. for bitcoinz v2.0.10) which contains the command line tools `bitcoinz-cli` and `bitcoinzd` you need to take the created file `./build/jars/BitcoinZWallet.jar` and copy it to directory `/home/user/bitcoinz/src` (the same dir. that contains `bitcoinz-cli` and `bitcoinzd`). Example copy command:
```
cp ./build/jars/BitcoinZWallet.jar /home/user/zen/src
```
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.deb"
<deb destfile="${ubuntu.package.dir}/bitcoinz-wallet_2.0.10.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 \n \n" +
" Version 2.0.10 \n \n" +

" Copyright (c) 2017-2022 BitcoinZ team \n" +
" Copyright (c) 2016-2018 Ivan Vaklinov &lt;ivan@vaklinov.com&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</html>");
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.10</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 (SEP-2022)</u></b><br>"+
"<b><u>v2.0.10 (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/BTCZClientCaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public synchronized List<List> getWalletZAddresses()
throws WalletCallException, IOException, InterruptedException
{

// Modified for the Viewing key for YODA 2.0.8
// Modified for the Viewing key for YODA 2.0.10
// TODO : return the VK advice from the cli ?
JsonArray jsonAddresses = executeCommandAndGetJsonArray("z_listaddresses", null);
JsonArray jsonAddressesVK = executeCommandAndGetJsonArray("z_listaddresses", "true");
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");
super("BitcoinZ Wallet 2.0.10");

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</html>");
"BitcoinZ Wallet UI</span></b><br>&nbsp;Version 2.0.10</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
Version=2.0.10
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
Version: 2.0.10
Section: misc
Priority: low
Architecture: all
Expand Down

0 comments on commit e163085

Please sign in to comment.