2022 02 13 issue 3405 (#4089)

* Fix version bug in download

* Remove more 'v' tag prefixes on tag

* Fix zip

* Final fixes on download links

* Remove extra docs
This commit is contained in:
Chris Stewart 2022-02-13 16:26:54 -06:00 committed by GitHub
parent 07fcfd0568
commit 3931897e7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 12 deletions

View file

@ -644,6 +644,9 @@
"version-0.6.0/core/version-0.6.0-addresses": { "version-0.6.0/core/version-0.6.0-addresses": {
"title": "Generating Addresses" "title": "Generating Addresses"
}, },
"version-0.6.0/core/version-0.6.0-core-intro": {
"title": "Core Module"
},
"version-0.6.0/core/version-0.6.0-dlc": { "version-0.6.0/core/version-0.6.0-dlc": {
"title": "Discreet Log Contract Data Structures" "title": "Discreet Log Contract Data Structures"
}, },
@ -713,6 +716,9 @@
"version-0.6.0/wallet/version-0.6.0-wallet-rescan": { "version-0.6.0/wallet/version-0.6.0-wallet-rescan": {
"title": "Wallet Rescans" "title": "Wallet Rescans"
}, },
"version-0.6.0/wallet/version-0.6.0-wallet-rpc": {
"title": "Wallet RPC Examples"
},
"version-0.6.0/wallet/version-0.6.0-wallet": { "version-0.6.0/wallet/version-0.6.0-wallet": {
"title": "Wallet" "title": "Wallet"
}, },

View file

@ -27,7 +27,7 @@ function Downloads(props) {
<tr> <tr>
<th>{latestVersion}</th> <th>{latestVersion}</th>
<td> <td>
<a href={`${releaseUrl}/tag/v${latestVersion}`}> <a href={`${releaseUrl}/tag/${latestVersion}`}>
Release Release
</a> </a>
</td> </td>
@ -41,32 +41,27 @@ function Downloads(props) {
<tbody> <tbody>
<tr> <tr>
<td> <td>
<a href={`${releaseUrl}/download/v${latestVersion}/bitcoin-s-server-${latestVersion}.dmg`}>bitcoin-s-server-{latestVersion}.dmg</a> <a href={`${releaseUrl}/download/${latestVersion}/bitcoin-s-${latestVersion}.dmg`}>bitcoin-s-server-{latestVersion}.dmg</a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<a href={`${releaseUrl}/download/v${latestVersion}/bitcoin-s-server-${latestVersion}.tgz`}>bitcoin-s-server-{latestVersion}.tgz</a> <a href={`${releaseUrl}/download/${latestVersion}/bitcoin-s-server-${latestVersion}.zip`}>bitcoin-s-server-{latestVersion}.zip</a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<a href={`${releaseUrl}/download/v${latestVersion}/bitcoin-s-server-docker.zip`}>bitcoin-s-server-docker.zip</a> <a href={`${releaseUrl}/download/${latestVersion}/bitcoin-s_${latestVersion}-1_amd64.deb`}>bitcoin-s-server-amd64.deb</a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<a href={`${releaseUrl}/download/v${latestVersion}/bitcoin-s-server.deb`}>bitcoin-s-server.deb</a> <a href={`${releaseUrl}/download/${latestVersion}/bitcoin-s-bundle.msi`}>bitcoin-s-server.msi</a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<a href={`${releaseUrl}/download/v${latestVersion}/bitcoin-s-server.msi`}>bitcoin-s-server.msi</a> <a href={`${releaseUrl}/download/${latestVersion}/SHA256SUMS.asc`}>SHA256SUMS.asc</a>
</td>
</tr>
<tr>
<td>
<a href={`${releaseUrl}/download/v${latestVersion}/SHA256SUMS.asc`}>SHA256SUMS.asc</a>
</td> </td>
</tr> </tr>
</tbody> </tbody>

View file

@ -56,7 +56,7 @@ function Versions(props) {
<a href={siteConfig.scaladocUrl}>Scaladoc</a> <a href={siteConfig.scaladocUrl}>Scaladoc</a>
</td> </td>
<td> <td>
<a href={`${repoUrl}/releases/tag/v${latestVersion}`}> <a href={`${repoUrl}/releases/tag/${latestVersion}`}>
Release Notes Release Notes
</a> </a>
</td> </td>