Skip to content

Commit ee7e96b

Browse files
authored
Merge pull request #54 from btcz/vaultz
build for sapling and vaultz at block 328,500
2 parents 4a734ab + 687b226 commit ee7e96b

20 files changed

+1352
-1022
lines changed

bitcoinz-wallet/put.binaries.here.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Put here:
22
"jre" dir from: java-1.8.0-openjdk-1.8.0.141-1.b16.ojdkbuild.windows.x86_64.zip
3-
zcash-cli.exe
4-
zcashd.exe
3+
bitcoinz-cli.exe
4+
bitcoinzd.exe

src/build/build.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!--
2-
* _________ _ ____ _ __ __ _ _ _ _ _ ___
2+
* _________ _ ____ _ __ __ _ _ _ _ _ ___
33
* |__ / ___|__ _ ___| |__ / ___|_ _(_)_ __ __ \ \ / /_ _| | | ___| |_| | | |_ _|
4-
* / / | / _` / __| '_ \\___ \ \ /\ / / | '_ \ / _` \ \ /\ / / _` | | |/ _ \ __| | | || |
5-
* / /| |__| (_| \__ \ | | |___) \ V V /| | | | | (_| |\ V V / (_| | | | __/ |_| |_| || |
4+
* / / | / _` / __| '_ \\___ \ \ /\ / / | '_ \ / _` \ \ /\ / / _` | | |/ _ \ __| | | || |
5+
* / /| |__| (_| \__ \ | | |___) \ V V /| | | | | (_| |\ V V / (_| | | | __/ |_| |_| || |
66
* /____\____\__,_|___/_| |_|____/ \_/\_/ |_|_| |_|\__, | \_/\_/ \__,_|_|_|\___|\__|\___/|___|
7-
* |___/
8-
*
7+
* |___/
8+
*
99
* Copyright (c) 2016-2017 Ivan Vaklinov <ivan@vaklinov.com>
1010
*
1111
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -14,21 +14,21 @@
1414
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1515
* copies of the Software, and to permit persons to whom the Software is
1616
* furnished to do so, subject to the following conditions:
17-
*
17+
*
1818
* The above copyright notice and this permission notice shall be included in
1919
* all copies or substantial portions of the Software.
20-
*
20+
*
2121
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2222
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2323
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2424
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2525
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2626
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27-
* THE SOFTWARE.
27+
* THE SOFTWARE.
2828
*
2929
-->
3030
<project name="BitcoinZWallet" basedir="../.." default="buildit">
31-
31+
3232
<property name="src.dir" value="src"/>
3333
<property name="lib.dir" value="lib"/>
3434
<property name="build.dir" value="build"/>
@@ -65,12 +65,13 @@
6565
<target name="clean">
6666
<delete dir="${build.dir}"/>
6767
</target>
68-
68+
6969
<target name="copyResources" depends="clean">
70-
<copy todir="${classes.dir}" >
71-
<fileset dir="${src.dir}/resources">
70+
<copy todir="${classes.dir}" >
71+
<fileset dir="${src.dir}/resources">
7272
<include name="images/**"/>
7373
<include name="keys/**"/>
74+
<include name="messages/**"/>
7475
</fileset>
7576
</copy>
7677
</target>
@@ -84,19 +85,19 @@
8485

8586
<target name="jar" depends="compile,copyResources">
8687
<mkdir dir="${jar.dir}"/>
87-
<jar destfile="${jar.dir}/${ant.project.name}.jar"
88+
<jar destfile="${jar.dir}/${ant.project.name}.jar"
8889
basedir="${classes.dir}"
8990
excludes="**/tradetest/*.class">
9091
<manifest>
9192
<attribute name="Main-Class" value="${main-class}"/>
9293
<attribute name="Class-Path" value="bitcoinj-core-0.14.5.jar sqlite-jdbc-3.21.0.jar"/>
9394
</manifest>
9495
</jar>
95-
<jar destfile="${jar.dir}/${ant.project.name}-src.jar"
96+
<jar destfile="${jar.dir}/${ant.project.name}-src.jar"
9697
basedir="${src.dir}">
9798
</jar>
9899
</target>
99-
100+
100101
<target name="ubuntuPackage" depends="jar,copyothers">
101102
<mkdir dir="${ubuntu.package.dir}"/>
102103
<deb destfile="${ubuntu.package.dir}/bitcoinz-wallet_1.1.0.4.deb"
@@ -163,8 +164,8 @@
163164
-->
164165

165166
<target name="copyothers">
166-
<copy todir="${jar.dir}" >
167-
<fileset dir="${lib.dir}">
167+
<copy todir="${jar.dir}" >
168+
<fileset dir="${lib.dir}">
168169
<include name="bitcoinj-core-0.14.5*"/>
169170
<include name="sqlite-jdbc-3.21.0*"/>
170171
</fileset>
@@ -181,4 +182,3 @@
181182
</target>
182183

183184
</project>
184-

0 commit comments

Comments
 (0)