diff --git a/electrum.html b/electrum.html index 3b6434d..8b95761 100644 --- a/electrum.html +++ b/electrum.html @@ -1,36 +1,99 @@ --- layout: base title: Electrum ABC ---
Electrum ABC

This wallet software is forked from Electron Cash, with modifications to facilitate use on the eCash network.

Join the Electrum ABC telegram group to get in contact with developers or to get help from the community.

Upon first use, the software will automatically copy existing Electron Cash wallet files into a new folder specific to Electrum ABC. This allows users to maintain separate wallet histories for either network going forward, and run Electron Cash and Electrum ABC simultaneously to ease coin splitting.

NOTE: The coins in the wallet will not split automatically. To ensure that transactions are not replayed between Bitcoin Cash and eCash networks, please refer to one of the coin splitting guides linked at bitcoinabc.org/ecash and make sure your pre-fork coins are safely split prior to transacting on either network.

-
-

Download links

-
- +
+ Read the release notes on Github. +
+ + + + +
+ {% assign pastReleases = releases | slice:1,15 %} + {% if pastReleases.size > 0 %} +

Past Releases

+ + + + + + + + {% for release in pastReleases %} + {% assign version = release.tag_name %} + {% unless version contains bcha_versions_prefix %} + + + + + + {% endunless %} + {% endfor %} + +
VersionPublishedDownloads
+ {{ version }} + {{ release.published_at | date: "%Y %b %e" }} + + + + + + + + + + + + +
+ {% endif %} +
+ {% else %} +

Download Electrum ABC on Github

+ {% endif %}
diff --git a/scripts/fetch_electrum_releases.sh b/scripts/fetch_electrum_releases.sh new file mode 100755 index 0000000..954579a --- /dev/null +++ b/scripts/fetch_electrum_releases.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +set -euxo pipefail + +# Github repository parameters +GITHUB_OWNER='Bitcoin-ABC' +GITHUB_REPO='ElectrumABC' + +# Max number of release versions to display +MAX_RELEASES=15 + +SCRIPT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd) +TOPLEVEL=$(git -C "${SCRIPT_DIR}" rev-parse --show-toplevel) + +RELEASES=$(curl -L -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/${GITHUB_OWNER}/${GITHUB_REPO}/releases?per_page=${MAX_RELEASES}) +echo "${RELEASES}" > "${TOPLEVEL}"/_data/github-releases-electrum.json