Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update links to v21.0.2 #371

Merged
merged 3 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/user/developers/compiling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Compiling Dash Core

While Dash offers stable binary builds on the `website
<https://www.dash.org/downloads/>`_ and on `GitHub
<https://github.com/dashpay/dash/releases>`__, and development builds using
<https://github.com/dashpay/dash/releases/latest>`__, and development builds using
`GitLab CI <https://gitlab.com/dashpay/dash/pipelines>`_, many users will also
be interested in building Dash binaries for themselves. Users who do not
required deterministic builds can typically follow the `generic build notes
Expand Down
8 changes: 4 additions & 4 deletions docs/user/developers/insight.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ dependencies::
Download and extract the latest version of Dash Core::

cd ~
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-x86_64-linux-gnu.tar.gz
tar -xvzf dashcore-21.0.0-x86_64-linux-gnu.tar.gz
rm dashcore-21.0.0-x86_64-linux-gnu.tar.gz
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-x86_64-linux-gnu.tar.gz
tar -xvzf dashcore-21.0.2-x86_64-linux-gnu.tar.gz
rm dashcore-21.0.2-x86_64-linux-gnu.tar.gz

Install `Dashcore Node <https://github.com/dashpay/dashcore-node>`_ and
create your configuration::
Expand All @@ -55,7 +55,7 @@ Change paths in the configuration file as follows::
nano dashcore-node.json

- Change the value of ``datadir`` to ``../../.dashcore``
- Change the value of ``exec`` to ``../../dashcore-21.0.0/bin/dashd``
- Change the value of ``exec`` to ``../../dashcore-21.0.2/bin/dashd``
- **Optionally** change the value of ``network`` to ``testnet`` if you
want to run Insight on testnet

Expand Down
2 changes: 1 addition & 1 deletion docs/user/developers/integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Integration Overview

This documentation is also available as a `PDF <https://github.com/dashpay/docs/raw/master/binary/integration/Dash_IntegrationOverview.pdf>`__.

`Dash Core <https://github.com/dashpay/dash/releases>`__ is a fork of `Bitcoin
`Dash Core <https://github.com/dashpay/dash/releases/latest>`__ is a fork of `Bitcoin
Core <https://github.com/bitcoin/bitcoin>`__ and shares many common
functionalities. Key differences are found in existing JSON-RPC commands which
have been customized to support unique functionalities such as InstantSend.
Expand Down
25 changes: 11 additions & 14 deletions docs/user/masternodes/maintenance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,36 +41,33 @@ Then stop Dash running::
~/.dashcore/dash-cli stop

Visit the `GitHub releases page
<https://github.com/dashpay/dash/releases>`_ and copy the link to the
<https://github.com/dashpay/dash/releases/latest>`_ and copy the link to the
latest `x86_64-linux-gnu` version. Go back to your terminal window and
enter the following command, pasting in the address to the latest
version of Dash Core by right clicking or pressing **Ctrl + V**::

cd /tmp
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-x86_64-linux-gnu.tar.gz
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-x86_64-linux-gnu.tar.gz

Verify the authenticity of your download by checking its detached
signature against the public key published by the Dash Core development
team. All releases of Dash are signed using GPG with one of the
following keys:
team. All releases of Dash since 0.16.0 are signed using GPG with the
following key:

- Alexander Block (codablock) with the key ``63A9 6B40 6102 E091``,
`verifiable here on Keybase <https://keybase.io/codablock>`__
- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable here
on Keybase <https://keybase.io/pasta>`__
- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable on Keybase
<https://keybase.io/pasta>`__ (`download <https://keybase.io/pasta/pgp_keys.asc>`__)

::

curl https://keybase.io/codablock/pgp_keys.asc | gpg --import
curl https://keybase.io/pasta/pgp_keys.asc | gpg --import
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc

Extract the compressed archive and copy the new files to the directory::

tar xfv dashcore-21.0.0-x86_64-linux-gnu.tar.gz
cp -f dashcore-21.0.0/bin/dashd ~/.dashcore/
cp -f dashcore-21.0.0/bin/dash-cli ~/.dashcore/
tar xfv dashcore-21.0.2-x86_64-linux-gnu.tar.gz
cp -f dashcore-21.0.2/bin/dashd ~/.dashcore/
cp -f dashcore-21.0.2/bin/dash-cli ~/.dashcore/

Restart Dash::

Expand Down
17 changes: 9 additions & 8 deletions docs/user/masternodes/setup-testnet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -655,26 +655,27 @@ and communication relating to the base blockchain. Download Dash Core as
follows::

cd /tmp
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-$(uname -m)-linux-gnu.tar.gz
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-$(uname -m)-linux-gnu.tar.gz

Verify the authenticity of your download by checking its detached
signature against the public key published by the Dash Core development
team. All releases of Dash are signed using GPG with the following key:
team. All releases of Dash since 0.16.0 are signed using GPG with the
following key:

- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable here
on Keybase <https://keybase.io/pasta>`__
- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable on Keybase
<https://keybase.io/pasta>`__ (`download <https://keybase.io/pasta/pgp_keys.asc>`__)

::

curl https://keybase.io/pasta/pgp_keys.asc | gpg --import
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-$(uname -m)-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.0-$(uname -m)-linux-gnu.tar.gz.asc
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-$(uname -m)-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.2-$(uname -m)-linux-gnu.tar.gz.asc

Extract the compressed archive and copy the necessary files to the
directory::

tar xfv dashcore-21.0.0-$(uname -m)-linux-gnu.tar.gz
sudo install -t /usr/local/bin dashcore-21.0.0/bin/*
tar xfv dashcore-21.0.2-$(uname -m)-linux-gnu.tar.gz
sudo install -t /usr/local/bin dashcore-21.0.2/bin/*

Create a working directory for Dash Core::

Expand Down
25 changes: 11 additions & 14 deletions docs/user/masternodes/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,39 +226,36 @@ Manual installation
-----------------------------

To manually download and install the components of your Dash masternode,
visit the `GitHub releases page <https://github.com/dashpay/dash/releases>`_
visit the `GitHub releases page <https://github.com/dashpay/dash/releases/latest>`_
and copy the link to the latest ``x86_64-linux-gnu`` version. Go back to
your terminal window and enter the following command, pasting in the
address to the latest version of Dash Core by right clicking or pressing
**Ctrl + V**::

cd /tmp
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-x86_64-linux-gnu.tar.gz
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-x86_64-linux-gnu.tar.gz

Verify the authenticity of your download by checking its detached
signature against the public key published by the Dash Core development
team. All releases of Dash are signed using GPG with one of the
following keys:
team. All releases of Dash since 0.16.0 are signed using GPG with the
following key:

- Alexander Block (codablock) with the key ``63A9 6B40 6102 E091``,
`verifiable here on Keybase <https://keybase.io/codablock>`__
- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable here
on Keybase <https://keybase.io/pasta>`__
- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable on Keybase
<https://keybase.io/pasta>`__ (`download <https://keybase.io/pasta/pgp_keys.asc>`__)

::

curl https://keybase.io/codablock/pgp_keys.asc | gpg --import
curl https://keybase.io/pasta/pgp_keys.asc | gpg --import
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc

Create a working directory for Dash, extract the compressed archive and
copy the necessary files to the directory::

mkdir ~/.dashcore
tar xfv dashcore-21.0.0-x86_64-linux-gnu.tar.gz
cp -f dashcore-21.0.0/bin/dashd ~/.dashcore/
cp -f dashcore-21.0.0/bin/dash-cli ~/.dashcore/
tar xfv dashcore-21.0.2-x86_64-linux-gnu.tar.gz
cp -f dashcore-21.0.2/bin/dashd ~/.dashcore/
cp -f dashcore-21.0.2/bin/dash-cli ~/.dashcore/

Create a configuration file using the following command::

Expand Down
27 changes: 12 additions & 15 deletions docs/user/mining/p2pool.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,37 +112,34 @@ address to the latest version of Dash Core by right clicking or pressing
**Ctrl + V**::

cd ~
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-x86_64-linux-gnu.tar.gz
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-x86_64-linux-gnu.tar.gz

Verify the authenticity of your download by checking its detached
signature against the public key published by the Dash Core development
team. All releases of Dash are signed using GPG with one of the
following keys:
team. All releases of Dash since 0.16.0 are signed using GPG with the
following key:

- Alexander Block (codablock) with the key ``63A9 6B40 6102 E091``,
`verifiable here on Keybase <https://keybase.io/codablock>`__
- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable here
on Keybase <https://keybase.io/pasta>`__
- Pasta (pasta) with the key ``5252 7BED ABE8 7984``, `verifiable on Keybase
<https://keybase.io/pasta>`__ (`download <https://keybase.io/pasta/pgp_keys.asc>`__)

::

curl https://keybase.io/codablock/pgp_keys.asc | gpg --import
curl https://keybase.io/pasta/pgp_keys.asc | gpg --import
wget https://github.com/dashpay/dash/releases/download/v21.0.0/dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
wget https://github.com/dashpay/dash/releases/download/v21.0.2/dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc

Create a working directory for Dash, extract the compressed archive,
copy the necessary files to the directory and set them as executable::

mkdir ~/.dashcore
tar xfvz dashcore-21.0.0-x86_64-linux-gnu.tar.gz
cp dashcore-21.0.0/bin/dashd .dashcore/
cp dashcore-21.0.0/bin/dash-cli .dashcore/
tar xfvz dashcore-21.0.2-x86_64-linux-gnu.tar.gz
cp dashcore-21.0.2/bin/dashd .dashcore/
cp dashcore-21.0.2/bin/dash-cli .dashcore/

Clean up unneeded files::

rm dashcore-21.0.0-x86_64-linux-gnu.tar.gz
rm -r dashcore-21.0.0/
rm dashcore-21.0.2-x86_64-linux-gnu.tar.gz
rm -r dashcore-21.0.2/

Create a configuration file using the following command::

Expand Down
10 changes: 5 additions & 5 deletions docs/user/wallets/dashcore/installation-linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Open a terminal, import the key and verify the authenticity of your
download as follows::

curl https://keybase.io/pasta/pgp_keys.asc | gpg --import
gpg --verify dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc

.. figure:: img/linux/setup-linux-gpg.png
:width: 400px
Expand All @@ -74,7 +74,7 @@ authentic copy of Dash Core for Linux.
verification output by signing the imported key before verifying::

gpg --quick-lsign-key "29590362EC878A81FD3C202B52527BEDABE87984"
gpg --verify dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc

Extracting Dash Core
----------------------
Expand All @@ -87,13 +87,13 @@ we will extract the executable file with a graphical user interface

Extract Dash Core as follows::

tar xzf dashcore-21.0.0-x86_64-linux-gnu.tar.gz
tar xzf dashcore-21.0.2-x86_64-linux-gnu.tar.gz

This will create a folder named ``dashcore-21.0.0`` in the current working
This will create a folder named ``dashcore-21.0.2`` in the current working
directory. We will now install the executable binaries to
``/usr/local/bin`` using the ``install`` command::

sudo install -m 0755 -o root -g root -t /usr/local/bin dashcore-21.0.0/bin/*
sudo install -m 0755 -o root -g root -t /usr/local/bin dashcore-21.0.2/bin/*

Start Dash Core from the terminal with the following command::

Expand Down
4 changes: 2 additions & 2 deletions docs/user/wallets/dashcore/installation-macos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Open a terminal, import the keys and verify the authenticity of your
download as follows::

curl https://keybase.io/pasta/pgp_keys.asc | gpg --import
gpg --verify dashcore-21.0.0-osx.dmg.asc
gpg --verify dashcore-21.0.2-osx.dmg.asc


.. figure:: img/linux/setup-linux-gpg.png
Expand All @@ -66,7 +66,7 @@ authentic copy of Dash Core for macOS.
verification output by signing the imported key before verifying::

gpg --quick-lsign-key "29590362EC878A81FD3C202B52527BEDABE87984"
gpg --verify dashcore-21.0.0-x86_64-linux-gnu.tar.gz.asc
gpg --verify dashcore-21.0.2-x86_64-linux-gnu.tar.gz.asc

Installing Dash Core
--------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/user/wallets/dashcore/installation-windows.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Import the key file and verify the Key-ID matches the ID above.

Skip any requests to certify the certificate with your own key. Next,
click **Decrypt/Verify...** and select the detached signature file named
``dashcore-21.0.0-win64-setup.exe.asc`` in the same folder as the
``dashcore-21.0.2-win64-setup.exe.asc`` in the same folder as the
downloaded installer.

.. figure:: img/windows/setup-windows-kleopatra-verify.png
Expand All @@ -73,8 +73,8 @@ downloaded installer.
Selecting the signature file for verification

If you see the first line of the message reads ``Verified
dashcore-21.0.0-win64-setup.exe with
dashcore-21.0.0-win64-setup.exe.asc`` then you have an authentic copy
dashcore-21.0.2-win64-setup.exe with
dashcore-21.0.2-win64-setup.exe.asc`` then you have an authentic copy
of Dash Core for Windows.

.. figure:: img/windows/setup-windows-kleopatra-verified.png
Expand Down
4 changes: 2 additions & 2 deletions scripts/update-download-links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# Dash Core version is released

# Define old and new version variables
OLD_VERSION="20.1.1"
NEW_VERSION="21.0.0"
OLD_VERSION="21.0.0"
NEW_VERSION="21.0.2"

# Use the variables in the find/sed commands
find . -iname "*.rst" -exec sed -i "s~/v${OLD_VERSION}/dashcore-${OLD_VERSION}-~/v${NEW_VERSION}/dashcore-${NEW_VERSION}-~g" {} +
Expand Down