SeekiaWebsite/resources/pages/download.html

139 lines
4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Seekia - {{.Download}}</title>
<link rel="stylesheet" type="text/css" href="../style.css">
{{.CodeSnippet_MetaTags}}
{{.CodeSnippet_Favicons}}
</head>
<body>
<div class = "pageDiv">
{{.CodeSnippet_Header}}
<h2 class = "pageHeading">Download</h2>
<hr class = "separator">
<p><b>Seekia is unfinished software. It cannot connect to the internet or download profiles.</b></p>
<p>You must compile it yourself to run it. The instructions are included in the download.</p>
<hr class = "separator">
<h2>Download Seekia Version 0.71</h2>
<p>File Name: <b>Seekia-v0.71.tgz</b></p>
<a class = "blueDownloadButton" href="{{.DownloadSeekiaLink}}" target=”_blank”>{{.Download}}</a>
<hr class = "separator">
<h2>Verify File Integrity</h2>
<p>You should verify the file downloaded correctly by verifying the file's SHA-256 checksum.</p>
<hr class = "separator">
<p>Seekia v0.71 SHA-256 Checksum:</p>
<p><i>7a914da5ae0196cce1612ad8a7282882f9017b84b04956faa7e5ed3c442e4dd0</i></p>
<hr class = "separator">
<p>Use the command for your operating system to compute the file's SHA-256 checksum.</p>
<p>The result from the command should match the above checksum.</p>
<div class = "operatingSystemBox">
<img class = "operatingSystemLogo" src = "../images/linux.svg"></img>
<b class = "operatingSystemName">Linux</b>
<code class = "codeblock" > sha256sum Seekia-v0.71.tgz</code>
</div>
<div class = "operatingSystemBox">
<img class = "operatingSystemLogo" src = "../images/mac.svg"></img>
<b class = "operatingSystemName">Mac</b>
<code class = "codeblock" > shasum -a 256 Seekia-v0.71.tgz</code>
</div>
<div class = "operatingSystemBox">
<img class = "operatingSystemLogo" src = "../images/windows.svg"></img>
<b class = "operatingSystemName">Windows</b>
<code class = "codeblock"> Get-FileHash Seekia-v0.71.tgz</code>
</div>
<hr class = "separator">
<h2>Verify File Authenticity</h2>
<p> You should verify the downloaded file is authentic by verifying its PGP signature.</p>
<hr class = "separator">
<h3>Download v0.71 PGP Signature:</h3>
<a href="../signatures/Seekia-v0.71.tgz.asc" target=”_blank”>Seekia-v0.71.tgz.asc</a>
<hr class = "separator">
<p>You must verify the signature and retrieve the PGP key which signed the release.</p>
<p>You can use GnuPG, a library for verifying PGP signatures.</p>
<p>Below are the instructions for each operating system.</p>
<hr class = "separator">
<div class = "operatingSystemBox">
<img class = "operatingSystemLogo" src = "../images/linux.svg"></img>
<b class = "operatingSystemName">Linux</b>
<p>Use this command to get the signing key.</p>
<code class = "codeblock"> gpg --verify Seekia-v0.71.tgz.asc Seekia-v0.71.tgz</code>
</div>
<div class = "operatingSystemBox">
<div>
<img class = "operatingSystemLogo" src = "../images/mac.svg"></img>
<img class = "operatingSystemLogo" src = "../images/windows.svg"></img>
</div>
<b class = "operatingSystemName">Windows/Mac</b>
<p>Use a search engine to learn how to verify PGP signatures.</p>
</div>
<hr class = "separator">
<p>You must verify the signing key belongs to the author, Simon Sarasova.</p>
<hr class = "separator">
<p>Simon Sarasova's GPG signing key:</p>
<p><i>112CCEE17CDEB7049EE568A2F85404520BA69D2C</i></p>
<hr class = "separator">
<p>Simon's signing key is also located on his website:</p>
<a href = "ipns://SimonSarasova.eth/keys.html" target = "_blank"><b>SimonSarasova.eth/keys.html</b> </a>
<p>To access a .eth website, you can use Brave browser.</p>
<hr class = "separator">
<p>You can also use a trusted gateway to access his website.</p>
<p>You can visit his site from multiple gateways to ensure you are seeing an authentic version of his site.</p>
<a href="https://SimonSarasova.eth.limo/keys.html" target=”_blank”>SimonSarasova.eth.limo/keys.html</a>
<a href="https://SimonSarasova.eth.link/keys.html" target=”_blank”>SimonSarasova.eth.link/keys.html</a>
<hr class = "separator">
<div class = "thinlinebreak"></div>
<a href = "{{.LanguageURLBase}}archive.html"><b>Download Archived Versions</b></a>
</div>
</body>
</html>