downloads.html (1938B)
1 <!doctype html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <meta name="color-scheme" content="dark"> 7 <title>iuna Downloads</title> 8 <link rel="stylesheet" href="/assets/static-listing.css"> 9 </head> 10 <body> 11 <div class="topbar"> 12 <div class="wrap"> 13 <a class="brand repo-link" href="/"> 14 <span class="mark" aria-label="iuna"> 15 <svg viewBox="0 0 32 32" aria-hidden="true" focusable="false"> 16 <circle class="mark-dot" cx="9.4" cy="7.6" r="2.8"></circle> 17 <path class="mark-loop" d="M9.4 13v7.1c0 3.7 2.9 6.4 6.6 6.4s6.6-2.7 6.6-6.4V13"></path> 18 </svg> 19 </span> 20 <span>iuna</span> 21 </a> 22 <nav aria-label="Page sections"> 23 <a href="/">Home</a> 24 <a href="/git/iuna/file/docs/protocol.md.html">Protocol</a> 25 <a href="/git/iuna/">Source</a> 26 <a href="/downloads/">Downloads</a> 27 </nav> 28 </div> 29 </div> 30 31 <main class="wrap"> 32 <section class="hero"> 33 <h1>iuna Downloads</h1> 34 <p>Release artifacts for iuna <span data-download-version>${IUNA_VERSION}</span>.</p> 35 </section> 36 37 <div class="grid download-grid" data-download-cards> 38 <article class="card"> 39 <span class="tag pending">Checking</span> 40 <h2>Downloads</h2> 41 <p class="muted">Looking for release artifacts.</p> 42 </article> 43 </div> 44 45 <p class="checksum-link"><a href="/downloads/SHA256SUMS">SHA256 checksums</a></p> 46 47 <section class="source-build"> 48 <h2>Build from source</h2> 49 <p class="muted">Clone the repository and run a local release build.</p> 50 <pre><code>git clone https://getiuna.org/git/iuna.git 51 cd iuna 52 cargo run --release</code></pre> 53 </section> 54 </main> 55 <script> 56 window.IUNA_DOWNLOADS_VERSION = "${IUNA_VERSION}"; 57 </script> 58 <script src="/assets/iuna-downloads.js"></script> 59 </body> 60 </html>