Radish alpha
r
rad:z371PVmDHdjJucejRoRYJcDEvD5pp
Radicle website including documentation and guides
Radicle
Git
Various fixes to release page
Alexis Sellier committed 2 years ago
commit 1e2759d5f23bad8604d0be98e9ff41cc6d098de6
parent e2ec5b4
2 files changed +10 -3
modified _pages/releases.md
@@ -25,7 +25,7 @@ reproduce the binaries on this page from source.
  </p>
</noscript>

-
<table class="loading" id="releases">
+
<table class="hidden loading" id="releases">
  <thead>
    <th scope="col">OS</th>
    <th scope="col">Arch</th>
@@ -89,12 +89,15 @@ The output must correspond to the above.

To install, simply extract the files to a location in your `PATH`, for example:

-
    $ tar -xvJf ARCHIVE.tar.xz --overwrite --strip-components=1 -C /usr/local/
+
    $ tar -xvJf ARCHIVE.tar.xz --strip-components=1 -C /usr/local/

This will place binaries in `/usr/local/bin` and manuals in `/usr/local/man`,
and overwrite any existing Radicle binaries.

<script>
+
  const releases = document.getElementById("releases");
+
  releases.classList.remove("hidden");
+

  fetch("https://files.radicle.xyz/releases/latest/radicle.json")
    .then(res => res.json())
    .then(data => {
modified assets/css/page.css
@@ -103,7 +103,7 @@ code {
pre {
  margin-left: 4rem;
  font-family: var(--font-family-code-alt);
-
  overflow-x: scroll;
+
  overflow-x: auto;
}

pre code {
@@ -199,6 +199,10 @@ a:hover {
  color: var(--color-bg-default) !important;
}

+
.hidden {
+
  display: none;
+
}
+

li::marker {
  content: "- ";
}