Created
April 8, 2018 03:09
-
-
Save erukiti/93c95f737299a7c1f9a5376af1a95fe1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
base=`pwd` | |
cd bitcoin | |
git checkout -f master >/dev/null 2>&1 | |
prev="/dev/null" | |
for tag in `git tag | grep -e "^v0\.[0-9]\+\.[0-9]\+$" | sort -V` | |
do | |
git checkout -f $tag >/dev/null 2>&1 | |
date=`git log | head -n 10 | grep "^Date" | head -n 1 | cut -c9-40` | |
echo $tag $date | |
if [ -f "script.h" ]; then | |
f=`ls -1 *.{cpp,h}` | |
else | |
f=`cd src ; ls -1 *.{cpp,h}` | |
fi | |
# echo "$f" | |
echo "$f" > $base/$tag | |
diff -u $prev $base/$tag | |
prev=$base/$tag | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
v0.1.5 Wed Sep 16 13:26:04 2009 +0000 | |
--- /dev/null 2018-04-08 12:07:34.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.1.5 2018-04-08 12:07:34.000000000 +0900 | |
@@ -0,0 +1,26 @@ | |
+base58.h | |
+bignum.h | |
+db.cpp | |
+db.h | |
+headers.h | |
+irc.cpp | |
+irc.h | |
+key.h | |
+main.cpp | |
+main.h | |
+market.cpp | |
+market.h | |
+net.cpp | |
+net.h | |
+script.cpp | |
+script.h | |
+serialize.h | |
+sha.cpp | |
+sha.h | |
+ui.cpp | |
+ui.h | |
+uibase.cpp | |
+uibase.h | |
+uint256.h | |
+util.cpp | |
+util.h | |
v0.2.0 Mon Dec 14 02:12:01 2009 +0000 | |
--- /Users/erukiti/work/bitcoin-test/v0.1.5 2018-04-08 12:07:34.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.2.0 2018-04-08 12:07:34.000000000 +0900 | |
@@ -17,6 +17,7 @@ | |
serialize.h | |
sha.cpp | |
sha.h | |
+strlcpy.h | |
ui.cpp | |
ui.h | |
uibase.cpp | |
v0.2.2 Wed Feb 17 17:22:01 2010 +0000 | |
--- /Users/erukiti/work/bitcoin-test/v0.2.0 2018-04-08 12:07:34.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.2.2 2018-04-08 12:07:34.000000000 +0900 | |
@@ -8,10 +8,10 @@ | |
key.h | |
main.cpp | |
main.h | |
-market.cpp | |
-market.h | |
net.cpp | |
net.h | |
+rpc.cpp | |
+rpc.h | |
script.cpp | |
script.h | |
serialize.h | |
v0.2.4 Sat Feb 20 21:59:59 2010 +0000 | |
v0.2.5 Sun Feb 21 21:42:01 2010 +0000 | |
v0.2.6 Tue Feb 23 22:01:39 2010 +0000 | |
v0.2.7 Thu Feb 25 21:55:27 2010 +0000 | |
--- /Users/erukiti/work/bitcoin-test/v0.2.6 2018-04-08 12:07:34.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.2.7 2018-04-08 12:07:34.000000000 +0900 | |
@@ -3,6 +3,8 @@ | |
db.cpp | |
db.h | |
headers.h | |
+init.cpp | |
+init.h | |
irc.cpp | |
irc.h | |
key.h | |
v0.2.8 Wed May 19 00:26:56 2010 +0000 | |
v0.2.9 Wed May 26 00:05:26 2010 +0000 | |
v0.2.10 Thu Jun 10 23:10:30 2010 +0000 | |
v0.2.11 Tue Jun 15 18:26:32 2010 +0000 | |
v0.2.12 Fri Jun 18 03:14:24 2010 +0000 | |
v0.2.13 Mon Jun 21 01:33:44 2010 +0000 | |
v0.3.0 Sun Jul 4 06:15:06 2010 +0000 | |
v0.3.1 Mon Jul 19 01:10:37 2010 +0000 | |
v0.3.2 Mon Jul 19 01:12:24 2010 +0000 | |
v0.3.3 Mon Jul 26 17:40:05 2010 +0000 | |
v0.3.6 Fri Jul 30 17:36:06 2010 +0000 | |
--- /Users/erukiti/work/bitcoin-test/v0.3.3 2018-04-08 12:07:35.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.3.6 2018-04-08 12:07:35.000000000 +0900 | |
@@ -12,13 +12,12 @@ | |
main.h | |
net.cpp | |
net.h | |
+noui.h | |
rpc.cpp | |
rpc.h | |
script.cpp | |
script.h | |
serialize.h | |
-sha.cpp | |
-sha.h | |
strlcpy.h | |
ui.cpp | |
ui.h | |
v0.3.7 Sat Jul 31 20:12:05 2010 +0000 | |
v0.3.8 Wed Aug 4 01:51:34 2010 +0000 | |
v0.3.10 Sun Aug 15 22:46:58 2010 +0000 | |
--- /Users/erukiti/work/bitcoin-test/v0.3.8 2018-04-08 12:07:35.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.3.10 2018-04-08 12:07:35.000000000 +0900 | |
@@ -18,6 +18,7 @@ | |
script.cpp | |
script.h | |
serialize.h | |
+sha256.cpp | |
strlcpy.h | |
ui.cpp | |
ui.h | |
v0.3.12 Tue Sep 7 01:12:53 2010 +0000 | |
v0.3.13 Thu Sep 30 23:54:15 2010 +0000 | |
v0.3.14 Thu Oct 21 16:47:16 2010 +0000 | |
v0.3.15 Sun Nov 14 00:06:10 2010 +0000 | |
v0.3.17 Thu Nov 25 20:41:57 2010 +0000 | |
v0.3.18 Wed Dec 8 23:23:48 2010 +0000 | |
v0.3.19 Mon Dec 13 16:26:14 2010 +0000 | |
v0.3.20 Fri Feb 18 10:39:24 2011 -0500 | |
v0.3.21 Wed Apr 20 18:08:01 2011 -0400 | |
v0.3.22 Thu Jun 2 16:22:49 2011 +0200 | |
--- /Users/erukiti/work/bitcoin-test/v0.3.21 2018-04-08 12:07:35.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.3.22 2018-04-08 12:07:36.000000000 +0900 | |
@@ -18,7 +18,6 @@ | |
script.cpp | |
script.h | |
serialize.h | |
-sha256.cpp | |
strlcpy.h | |
ui.cpp | |
ui.h | |
v0.3.23 Sat Jun 11 16:17:13 2011 -0700 | |
v0.3.24 Fri Jul 8 13:38:24 2011 -0400 | |
--- /Users/erukiti/work/bitcoin-test/v0.3.23 2018-04-08 12:07:36.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.3.24 2018-04-08 12:07:36.000000000 +0900 | |
@@ -8,6 +8,8 @@ | |
irc.cpp | |
irc.h | |
key.h | |
+keystore.cpp | |
+keystore.h | |
main.cpp | |
main.h | |
net.cpp | |
@@ -26,3 +28,5 @@ | |
uint256.h | |
util.cpp | |
util.h | |
+wallet.cpp | |
+wallet.h | |
v0.4.0 Thu Sep 22 13:54:42 2011 -0700 | |
--- /Users/erukiti/work/bitcoin-test/v0.3.24 2018-04-08 12:07:36.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.4.0 2018-04-08 12:07:36.000000000 +0900 | |
@@ -1,5 +1,7 @@ | |
base58.h | |
bignum.h | |
+crypter.cpp | |
+crypter.h | |
db.cpp | |
db.h | |
headers.h | |
@@ -15,6 +17,8 @@ | |
net.cpp | |
net.h | |
noui.h | |
+protocol.cpp | |
+protocol.h | |
rpc.cpp | |
rpc.h | |
script.cpp | |
v0.5.0 Sun Nov 20 17:12:00 2011 +0100 | |
--- /Users/erukiti/work/bitcoin-test/v0.4.0 2018-04-08 12:07:36.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.5.0 2018-04-08 12:07:36.000000000 +0900 | |
@@ -1,5 +1,7 @@ | |
base58.h | |
bignum.h | |
+bitcoinrpc.cpp | |
+bitcoinrpc.h | |
crypter.cpp | |
crypter.h | |
db.cpp | |
@@ -19,16 +21,11 @@ | |
noui.h | |
protocol.cpp | |
protocol.h | |
-rpc.cpp | |
-rpc.h | |
+qtui.h | |
script.cpp | |
script.h | |
serialize.h | |
strlcpy.h | |
-ui.cpp | |
-ui.h | |
-uibase.cpp | |
-uibase.h | |
uint256.h | |
util.cpp | |
util.h | |
v0.5.1 Tue Dec 13 12:56:26 2011 -0800 | |
--- /Users/erukiti/work/bitcoin-test/v0.5.0 2018-04-08 12:07:36.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.5.1 2018-04-08 12:07:36.000000000 +0900 | |
@@ -2,6 +2,8 @@ | |
bignum.h | |
bitcoinrpc.cpp | |
bitcoinrpc.h | |
+checkpoints.cpp | |
+checkpoints.h | |
crypter.cpp | |
crypter.h | |
db.cpp | |
v0.5.2 Thu Jan 5 18:19:29 2012 -0500 | |
v0.5.3 Sun Mar 11 22:21:06 2012 -0400 | |
v0.6.0 Thu Mar 29 15:11:04 2012 -0400 | |
--- /Users/erukiti/work/bitcoin-test/v0.5.3 2018-04-08 12:07:36.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.6.0 2018-04-08 12:07:36.000000000 +0900 | |
@@ -1,9 +1,12 @@ | |
+addrman.cpp | |
+addrman.h | |
base58.h | |
bignum.h | |
bitcoinrpc.cpp | |
bitcoinrpc.h | |
checkpoints.cpp | |
checkpoints.h | |
+compat.h | |
crypter.cpp | |
crypter.h | |
db.cpp | |
@@ -13,17 +16,22 @@ | |
init.h | |
irc.cpp | |
irc.h | |
+key.cpp | |
key.h | |
keystore.cpp | |
keystore.h | |
main.cpp | |
main.h | |
+mruset.h | |
net.cpp | |
net.h | |
+netbase.cpp | |
+netbase.h | |
noui.h | |
protocol.cpp | |
protocol.h | |
qtui.h | |
+rpcdump.cpp | |
script.cpp | |
script.h | |
serialize.h | |
v0.6.1 Mon Apr 30 13:06:30 2012 -0400 | |
--- /Users/erukiti/work/bitcoin-test/v0.6.0 2018-04-08 12:07:36.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.6.1 2018-04-08 12:07:36.000000000 +0900 | |
@@ -1,5 +1,6 @@ | |
addrman.cpp | |
addrman.h | |
+allocators.h | |
base58.h | |
bignum.h | |
bitcoinrpc.cpp | |
@@ -11,7 +12,6 @@ | |
crypter.h | |
db.cpp | |
db.h | |
-headers.h | |
init.cpp | |
init.h | |
irc.cpp | |
@@ -27,17 +27,21 @@ | |
net.h | |
netbase.cpp | |
netbase.h | |
-noui.h | |
+noui.cpp | |
protocol.cpp | |
protocol.h | |
-qtui.h | |
rpcdump.cpp | |
script.cpp | |
script.h | |
serialize.h | |
strlcpy.h | |
+ui_interface.h | |
uint256.h | |
util.cpp | |
util.h | |
+version.cpp | |
+version.h | |
wallet.cpp | |
wallet.h | |
+walletdb.cpp | |
+walletdb.h | |
v0.6.2 Sun May 6 20:11:05 2012 -0400 | |
v0.6.3 Tue Jun 19 16:44:55 2012 -0400 | |
v0.7.0 Wed Sep 12 14:07:22 2012 -0400 | |
--- /Users/erukiti/work/bitcoin-test/v0.6.3 2018-04-08 12:07:37.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.7.0 2018-04-08 12:07:37.000000000 +0900 | |
@@ -1,5 +1,7 @@ | |
addrman.cpp | |
addrman.h | |
+alert.cpp | |
+alert.h | |
allocators.h | |
base58.h | |
bignum.h | |
@@ -7,6 +9,7 @@ | |
bitcoinrpc.h | |
checkpoints.cpp | |
checkpoints.h | |
+clientversion.h | |
compat.h | |
crypter.cpp | |
crypter.h | |
@@ -30,11 +33,18 @@ | |
noui.cpp | |
protocol.cpp | |
protocol.h | |
+rpcblockchain.cpp | |
rpcdump.cpp | |
+rpcmining.cpp | |
+rpcnet.cpp | |
+rpcrawtransaction.cpp | |
+rpcwallet.cpp | |
script.cpp | |
script.h | |
serialize.h | |
strlcpy.h | |
+sync.cpp | |
+sync.h | |
ui_interface.h | |
uint256.h | |
util.cpp | |
v0.7.1 Tue Oct 9 13:22:09 2012 -0400 | |
v0.7.2 Mon Dec 10 09:47:37 2012 -0500 | |
v0.8.0 Mon Feb 18 18:37:45 2013 -0500 | |
--- /Users/erukiti/work/bitcoin-test/v0.7.2 2018-04-08 12:07:37.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.8.0 2018-04-08 12:07:37.000000000 +0900 | |
@@ -7,14 +7,19 @@ | |
bignum.h | |
bitcoinrpc.cpp | |
bitcoinrpc.h | |
+bloom.cpp | |
+bloom.h | |
checkpoints.cpp | |
checkpoints.h | |
+checkqueue.h | |
clientversion.h | |
compat.h | |
crypter.cpp | |
crypter.h | |
db.cpp | |
db.h | |
+hash.cpp | |
+hash.h | |
init.cpp | |
init.h | |
irc.cpp | |
@@ -23,6 +28,8 @@ | |
key.h | |
keystore.cpp | |
keystore.h | |
+leveldb.cpp | |
+leveldb.h | |
main.cpp | |
main.h | |
mruset.h | |
@@ -42,9 +49,11 @@ | |
script.cpp | |
script.h | |
serialize.h | |
-strlcpy.h | |
sync.cpp | |
sync.h | |
+threadsafety.h | |
+txdb.cpp | |
+txdb.h | |
ui_interface.h | |
uint256.h | |
util.cpp | |
v0.8.1 Fri Mar 15 16:23:35 2013 -0400 | |
v0.8.2 Sat May 25 08:48:25 2013 -0700 | |
--- /Users/erukiti/work/bitcoin-test/v0.8.1 2018-04-08 12:07:37.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.8.2 2018-04-08 12:07:37.000000000 +0900 | |
@@ -22,14 +22,13 @@ | |
hash.h | |
init.cpp | |
init.h | |
-irc.cpp | |
-irc.h | |
key.cpp | |
key.h | |
keystore.cpp | |
keystore.h | |
leveldb.cpp | |
leveldb.h | |
+limitedmap.h | |
main.cpp | |
main.h | |
mruset.h | |
v0.8.3 Tue Jun 25 10:27:24 2013 -0400 | |
v0.8.4 Tue Aug 20 17:41:42 2013 -0700 | |
v0.8.5 Thu Sep 12 12:46:38 2013 +1000 | |
v0.8.6 Wed Nov 27 13:17:13 2013 +0100 | |
v0.9.0 Sat Mar 15 21:33:49 2014 -0400 | |
--- /Users/erukiti/work/bitcoin-test/v0.8.6 2018-04-08 12:07:38.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.9.0 2018-04-08 12:07:38.000000000 +0900 | |
@@ -2,18 +2,26 @@ | |
addrman.h | |
alert.cpp | |
alert.h | |
+allocators.cpp | |
allocators.h | |
base58.h | |
bignum.h | |
-bitcoinrpc.cpp | |
-bitcoinrpc.h | |
+bitcoin-cli.cpp | |
+bitcoind.cpp | |
bloom.cpp | |
bloom.h | |
+chainparams.cpp | |
+chainparams.h | |
checkpoints.cpp | |
checkpoints.h | |
checkqueue.h | |
clientversion.h | |
+coincontrol.h | |
+coins.cpp | |
+coins.h | |
compat.h | |
+core.cpp | |
+core.h | |
crypter.cpp | |
crypter.h | |
db.cpp | |
@@ -26,24 +34,34 @@ | |
key.h | |
keystore.cpp | |
keystore.h | |
-leveldb.cpp | |
-leveldb.h | |
+leveldbwrapper.cpp | |
+leveldbwrapper.h | |
limitedmap.h | |
main.cpp | |
main.h | |
+miner.cpp | |
+miner.h | |
mruset.h | |
net.cpp | |
net.h | |
netbase.cpp | |
netbase.h | |
noui.cpp | |
+noui.h | |
protocol.cpp | |
protocol.h | |
rpcblockchain.cpp | |
+rpcclient.cpp | |
+rpcclient.h | |
rpcdump.cpp | |
rpcmining.cpp | |
+rpcmisc.cpp | |
rpcnet.cpp | |
+rpcprotocol.cpp | |
+rpcprotocol.h | |
rpcrawtransaction.cpp | |
+rpcserver.cpp | |
+rpcserver.h | |
rpcwallet.cpp | |
script.cpp | |
script.h | |
@@ -51,8 +69,11 @@ | |
sync.cpp | |
sync.h | |
threadsafety.h | |
+tinyformat.h | |
txdb.cpp | |
txdb.h | |
+txmempool.cpp | |
+txmempool.h | |
ui_interface.h | |
uint256.h | |
util.cpp | |
v0.9.1 Tue Apr 8 11:50:36 2014 +0200 | |
v0.9.2 Fri Jun 13 12:25:37 2014 +0200 | |
--- /Users/erukiti/work/bitcoin-test/v0.9.1 2018-04-08 12:07:38.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.9.2 2018-04-08 12:07:39.000000000 +0900 | |
@@ -4,6 +4,7 @@ | |
alert.h | |
allocators.cpp | |
allocators.h | |
+base58.cpp | |
base58.h | |
bignum.h | |
bitcoin-cli.cpp | |
v0.9.3 Mon Sep 22 16:40:49 2014 +0200 | |
v0.9.4 Mon Jan 12 10:36:57 2015 +0100 | |
v0.9.5 Thu May 21 10:45:56 2015 +0200 | |
v0.10.0 Thu Feb 12 17:07:13 2015 -0500 | |
--- /Users/erukiti/work/bitcoin-test/v0.9.5 2018-04-08 12:07:39.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.10.0 2018-04-08 12:07:39.000000000 +0900 | |
@@ -4,29 +4,44 @@ | |
alert.h | |
allocators.cpp | |
allocators.h | |
+amount.cpp | |
+amount.h | |
base58.cpp | |
base58.h | |
-bignum.h | |
bitcoin-cli.cpp | |
+bitcoin-tx.cpp | |
bitcoind.cpp | |
bloom.cpp | |
bloom.h | |
+chain.cpp | |
+chain.h | |
chainparams.cpp | |
chainparams.h | |
+chainparamsbase.cpp | |
+chainparamsbase.h | |
+chainparamsseeds.h | |
checkpoints.cpp | |
checkpoints.h | |
checkqueue.h | |
+clientversion.cpp | |
clientversion.h | |
coincontrol.h | |
coins.cpp | |
coins.h | |
compat.h | |
-core.cpp | |
-core.h | |
+compressor.cpp | |
+compressor.h | |
+core_io.h | |
+core_read.cpp | |
+core_write.cpp | |
crypter.cpp | |
crypter.h | |
db.cpp | |
db.h | |
+eccryptoverify.cpp | |
+eccryptoverify.h | |
+ecwrapper.cpp | |
+ecwrapper.h | |
hash.cpp | |
hash.h | |
init.cpp | |
@@ -40,6 +55,8 @@ | |
limitedmap.h | |
main.cpp | |
main.h | |
+merkleblock.cpp | |
+merkleblock.h | |
miner.cpp | |
miner.h | |
mruset.h | |
@@ -49,8 +66,15 @@ | |
netbase.h | |
noui.cpp | |
noui.h | |
+pow.cpp | |
+pow.h | |
protocol.cpp | |
protocol.h | |
+pubkey.cpp | |
+pubkey.h | |
+random.cpp | |
+random.h | |
+rest.cpp | |
rpcblockchain.cpp | |
rpcclient.cpp | |
rpcclient.h | |
@@ -64,24 +88,34 @@ | |
rpcserver.cpp | |
rpcserver.h | |
rpcwallet.cpp | |
-script.cpp | |
-script.h | |
serialize.h | |
+streams.h | |
sync.cpp | |
sync.h | |
threadsafety.h | |
+timedata.cpp | |
+timedata.h | |
tinyformat.h | |
txdb.cpp | |
txdb.h | |
txmempool.cpp | |
txmempool.h | |
ui_interface.h | |
+uint256.cpp | |
uint256.h | |
+undo.h | |
util.cpp | |
util.h | |
-version.cpp | |
+utilmoneystr.cpp | |
+utilmoneystr.h | |
+utilstrencodings.cpp | |
+utilstrencodings.h | |
+utiltime.cpp | |
+utiltime.h | |
version.h | |
wallet.cpp | |
wallet.h | |
+wallet_ismine.cpp | |
+wallet_ismine.h | |
walletdb.cpp | |
walletdb.h | |
v0.10.1 Sat Apr 25 10:04:50 2015 +0200 | |
v0.10.2 Sat May 16 10:37:27 2015 +0200 | |
v0.10.3 Sun Oct 11 10:49:25 2015 +0200 | |
v0.10.4 Mon Nov 9 15:08:30 2015 +0100 | |
v0.10.5 Thu Mar 9 20:29:41 2017 +0100 | |
v0.11.0 Fri Jul 10 19:11:19 2015 +0200 | |
--- /Users/erukiti/work/bitcoin-test/v0.10.5 2018-04-08 12:07:40.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.11.0 2018-04-08 12:07:40.000000000 +0900 | |
@@ -2,10 +2,10 @@ | |
addrman.h | |
alert.cpp | |
alert.h | |
-allocators.cpp | |
-allocators.h | |
amount.cpp | |
amount.h | |
+arith_uint256.cpp | |
+arith_uint256.h | |
base58.cpp | |
base58.h | |
bitcoin-cli.cpp | |
@@ -34,10 +34,6 @@ | |
core_io.h | |
core_read.cpp | |
core_write.cpp | |
-crypter.cpp | |
-crypter.h | |
-db.cpp | |
-db.h | |
eccryptoverify.cpp | |
eccryptoverify.h | |
ecwrapper.cpp | |
@@ -55,6 +51,7 @@ | |
limitedmap.h | |
main.cpp | |
main.h | |
+memusage.h | |
merkleblock.cpp | |
merkleblock.h | |
miner.cpp | |
@@ -78,7 +75,6 @@ | |
rpcblockchain.cpp | |
rpcclient.cpp | |
rpcclient.h | |
-rpcdump.cpp | |
rpcmining.cpp | |
rpcmisc.cpp | |
rpcnet.cpp | |
@@ -87,7 +83,8 @@ | |
rpcrawtransaction.cpp | |
rpcserver.cpp | |
rpcserver.h | |
-rpcwallet.cpp | |
+scheduler.cpp | |
+scheduler.h | |
serialize.h | |
streams.h | |
sync.cpp | |
@@ -112,10 +109,6 @@ | |
utilstrencodings.h | |
utiltime.cpp | |
utiltime.h | |
+validationinterface.cpp | |
+validationinterface.h | |
version.h | |
-wallet.cpp | |
-wallet.h | |
-wallet_ismine.cpp | |
-wallet_ismine.h | |
-walletdb.cpp | |
-walletdb.h | |
v0.11.1 Mon Oct 12 20:58:31 2015 +0200 | |
--- /Users/erukiti/work/bitcoin-test/v0.11.0 2018-04-08 12:07:40.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.11.1 2018-04-08 12:07:41.000000000 +0900 | |
@@ -72,6 +72,7 @@ | |
random.cpp | |
random.h | |
rest.cpp | |
+reverselock.h | |
rpcblockchain.cpp | |
rpcclient.cpp | |
rpcclient.h | |
v0.11.2 Tue Nov 10 14:46:07 2015 +0100 | |
v0.11.3 Thu Mar 9 20:26:31 2017 +0100 | |
v0.12.0 Wed Feb 17 09:39:59 2016 +0100 | |
--- /Users/erukiti/work/bitcoin-test/v0.11.3 2018-04-08 12:07:41.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.12.0 2018-04-08 12:07:41.000000000 +0900 | |
@@ -32,22 +32,23 @@ | |
compressor.cpp | |
compressor.h | |
core_io.h | |
+core_memusage.h | |
core_read.cpp | |
core_write.cpp | |
-eccryptoverify.cpp | |
-eccryptoverify.h | |
-ecwrapper.cpp | |
-ecwrapper.h | |
+dbwrapper.cpp | |
+dbwrapper.h | |
hash.cpp | |
hash.h | |
+httprpc.cpp | |
+httprpc.h | |
+httpserver.cpp | |
+httpserver.h | |
init.cpp | |
init.h | |
key.cpp | |
key.h | |
keystore.cpp | |
keystore.h | |
-leveldbwrapper.cpp | |
-leveldbwrapper.h | |
limitedmap.h | |
main.cpp | |
main.h | |
@@ -56,7 +57,6 @@ | |
merkleblock.h | |
miner.cpp | |
miner.h | |
-mruset.h | |
net.cpp | |
net.h | |
netbase.cpp | |
@@ -65,6 +65,7 @@ | |
noui.h | |
pow.cpp | |
pow.h | |
+prevector.h | |
protocol.cpp | |
protocol.h | |
pubkey.cpp | |
@@ -94,6 +95,8 @@ | |
timedata.cpp | |
timedata.h | |
tinyformat.h | |
+torcontrol.cpp | |
+torcontrol.h | |
txdb.cpp | |
txdb.h | |
txmempool.cpp | |
v0.12.1 Mon Apr 11 13:01:40 2016 +0200 | |
--- /Users/erukiti/work/bitcoin-test/v0.12.0 2018-04-08 12:07:41.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.12.1 2018-04-08 12:07:41.000000000 +0900 | |
@@ -116,3 +116,5 @@ | |
validationinterface.cpp | |
validationinterface.h | |
version.h | |
+versionbits.cpp | |
+versionbits.h | |
v0.13.0 Wed Aug 17 13:01:59 2016 +0200 | |
--- /Users/erukiti/work/bitcoin-test/v0.12.1 2018-04-08 12:07:41.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.13.0 2018-04-08 12:07:42.000000000 +0900 | |
@@ -1,7 +1,5 @@ | |
addrman.cpp | |
addrman.h | |
-alert.cpp | |
-alert.h | |
amount.cpp | |
amount.h | |
arith_uint256.cpp | |
@@ -11,6 +9,8 @@ | |
bitcoin-cli.cpp | |
bitcoin-tx.cpp | |
bitcoind.cpp | |
+blockencodings.cpp | |
+blockencodings.h | |
bloom.cpp | |
bloom.h | |
chain.cpp | |
@@ -43,6 +43,7 @@ | |
httprpc.h | |
httpserver.cpp | |
httpserver.h | |
+indirectmap.h | |
init.cpp | |
init.h | |
key.cpp | |
@@ -74,17 +75,6 @@ | |
random.h | |
rest.cpp | |
reverselock.h | |
-rpcblockchain.cpp | |
-rpcclient.cpp | |
-rpcclient.h | |
-rpcmining.cpp | |
-rpcmisc.cpp | |
-rpcnet.cpp | |
-rpcprotocol.cpp | |
-rpcprotocol.h | |
-rpcrawtransaction.cpp | |
-rpcserver.cpp | |
-rpcserver.h | |
scheduler.cpp | |
scheduler.h | |
serialize.h | |
@@ -101,6 +91,7 @@ | |
txdb.h | |
txmempool.cpp | |
txmempool.h | |
+ui_interface.cpp | |
ui_interface.h | |
uint256.cpp | |
uint256.h | |
v0.13.1 Thu Oct 27 08:10:16 2016 +0200 | |
v0.13.2 Mon Jan 2 09:54:25 2017 +0100 | |
v0.14.0 Sun Mar 5 11:19:17 2017 -0500 | |
--- /Users/erukiti/work/bitcoin-test/v0.13.2 2018-04-08 12:07:42.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.14.0 2018-04-08 12:07:43.000000000 +0900 | |
@@ -1,3 +1,5 @@ | |
+addrdb.cpp | |
+addrdb.h | |
addrman.cpp | |
addrman.h | |
amount.cpp | |
@@ -25,7 +27,6 @@ | |
checkqueue.h | |
clientversion.cpp | |
clientversion.h | |
-coincontrol.h | |
coins.cpp | |
coins.h | |
compat.h | |
@@ -35,6 +36,7 @@ | |
core_memusage.h | |
core_read.cpp | |
core_write.cpp | |
+cuckoocache.h | |
dbwrapper.cpp | |
dbwrapper.h | |
hash.cpp | |
@@ -51,8 +53,6 @@ | |
keystore.cpp | |
keystore.h | |
limitedmap.h | |
-main.cpp | |
-main.h | |
memusage.h | |
merkleblock.cpp | |
merkleblock.h | |
@@ -60,8 +60,13 @@ | |
miner.h | |
net.cpp | |
net.h | |
+net_processing.cpp | |
+net_processing.h | |
+netaddress.cpp | |
+netaddress.h | |
netbase.cpp | |
netbase.h | |
+netmessagemaker.h | |
noui.cpp | |
noui.h | |
pow.cpp | |
@@ -81,6 +86,8 @@ | |
streams.h | |
sync.cpp | |
sync.h | |
+threadinterrupt.cpp | |
+threadinterrupt.h | |
threadsafety.h | |
timedata.cpp | |
timedata.h | |
@@ -104,8 +111,12 @@ | |
utilstrencodings.h | |
utiltime.cpp | |
utiltime.h | |
+validation.cpp | |
+validation.h | |
validationinterface.cpp | |
validationinterface.h | |
version.h | |
versionbits.cpp | |
versionbits.h | |
+warnings.cpp | |
+warnings.h | |
v0.14.1 Thu Apr 20 11:28:18 2017 +0200 | |
v0.14.2 Thu Jun 15 12:43:36 2017 +0200 | |
v0.15.0 Mon Sep 11 00:12:40 2017 +0200 | |
--- /Users/erukiti/work/bitcoin-test/v0.14.2 2018-04-08 12:07:43.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.15.0 2018-04-08 12:07:44.000000000 +0900 | |
@@ -2,7 +2,6 @@ | |
addrdb.h | |
addrman.cpp | |
addrman.h | |
-amount.cpp | |
amount.h | |
arith_uint256.cpp | |
arith_uint256.h | |
@@ -39,6 +38,8 @@ | |
cuckoocache.h | |
dbwrapper.cpp | |
dbwrapper.h | |
+fs.cpp | |
+fs.h | |
hash.cpp | |
hash.h | |
httprpc.cpp | |
@@ -79,6 +80,7 @@ | |
random.cpp | |
random.h | |
rest.cpp | |
+reverse_iterator.h | |
reverselock.h | |
scheduler.cpp | |
scheduler.h | |
v0.15.1 Mon Nov 6 09:46:11 2017 +0100 | |
v0.16.0 Thu Feb 22 20:19:41 2018 +0100 | |
--- /Users/erukiti/work/bitcoin-test/v0.15.1 2018-04-08 12:07:44.000000000 +0900 | |
+++ /Users/erukiti/work/bitcoin-test/v0.16.0 2018-04-08 12:07:44.000000000 +0900 | |
@@ -7,6 +7,8 @@ | |
arith_uint256.h | |
base58.cpp | |
base58.h | |
+bech32.cpp | |
+bech32.h | |
bitcoin-cli.cpp | |
bitcoin-tx.cpp | |
bitcoind.cpp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment