Merge #3372: Bitcoin Core 0.20.0

e653a80d7c Remove references to 32-bit i686 Linux build (Wladimir J. van der Laan)
8dc59ed0ba Bitcoin Core 0.20.0 (Wladimir J. van der Laan)

Pull request description:

  Create release page for 0.20.0 Based on bitcoin-core/bitcoincore.org#703.
  Can be merged if it passes Travis.

Top commit has no ACKs.

Tree-SHA512: cc0082574e3331fa3a8950f1bff3f80981a0d5f5c59f127c54464c4e1d74b0b5e26c5e59795ba208f9b79599c302d1d9ea36298809aecbc3ce77262e173223e6
This commit is contained in:
Wladimir J. van der Laan 2020-06-03 13:17:44 +02:00
commit 53809311d7
No known key found for this signature in database
GPG Key ID: 1E4AED62986CD25D
2 changed files with 1024 additions and 8 deletions

1024
_releases/v0.20.0.md Normal file

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,6 @@ win64zip: "win64.zip"
win64exe: "win64-setup.exe"
macdmg: "-osx.dmg"
mactar: "osx64.tar.gz"
lin32: "i686-pc-linux-gnu.tar.gz"
lin64: "x86_64-linux-gnu.tar.gz"
---
@ -94,8 +93,6 @@ lin64: "x86_64-linux-gnu.tar.gz"
<div class="corecard linux-card">
<a href="{{ PATH_PREFIX }}/{{ FILE_PREFIX }}-{{ page.lin64 }}" id="downloadlin">Linux (tgz)</a>
<a href="{{ PATH_PREFIX }}/{{ FILE_PREFIX }}-{{ page.lin64 }}" class="dl download-link" id="lin64">64 bit</a>
<span> - </span>
<a href="{{ PATH_PREFIX }}/{{ FILE_PREFIX }}-{{ page.lin32 }}" class="dl download-link" id="lin32">32 bit</a>
</div>
<div class="corecard arm-card">
@ -131,7 +128,6 @@ var hrefwin64zip = document.getElementById('win64zip').href;
var hrefmacdmg = document.getElementById('macdmg').href;
var hrefmactar = document.getElementById('mactar').href;
var hreflin64 = document.getElementById('lin64').href;
var hreflin32 = document.getElementById('lin32').href;
switch (os) {
case 'windows64':
but.href = hrefwin64exe;
@ -142,10 +138,6 @@ case 'linux64':
but.href = hreflin64;
linklin.href = hreflin64;
break;
case 'linux32':
but.href = hreflin32;
linklin.href = hreflin32;
break;
case 'snap':
but.href = 'https://snapcraft.io/bitcoin-core';
break;