shithub: hell

Download patch

ref: 6e782b14649d2fb01ecb4c4408f811f618f1d0cf
parent: 5e5777a4240c3e8e9779b10d3ddf43b08a0fa22c
author: penny <penny@limitedideas.org>
date: Thu Oct 16 08:30:51 EDT 2025

update website with new download links

--- a/index.html
+++ b/index.html
@@ -231,9 +231,12 @@
 most likely has the most up to date code but static binaries are
 available</p>
 <ul>
-<li><a href="web/downloads/win/hell.exe">Windows</a></li>
-<li><a href="web/downloads/linux/hell">Linux</a></li>
-<li><a href="web/downloads/mac/hell">Mac</a></li>
+<li><a
+href="https://penny64.codeberg.page/hellclient-downloads/win/hell.exe">Windows</a></li>
+<li><a
+href="https://penny64.codeberg.page/hellclient-downloads/linux/hell">Linux</a></li>
+<li><a
+href="https://penny64.codeberg.page/hellclient-downloads/mac/hell">Mac</a></li>
 </ul>
 </body>
 </html>
--- a/web/homepage.md
+++ b/web/homepage.md
@@ -43,6 +43,6 @@
 ##### Downloads
 The [git repo](https://codeberg.org/penny64/hellclient) most likely has the most up to date code but static binaries are available
 
-* [Windows](web/downloads/win/hell.exe)
-* [Linux](web/downloads/linux/hell)
-* [Mac](web/downloads/mac/hell)
+* [Windows](https://penny64.codeberg.page/hellclient-downloads/win/hell.exe)
+* [Linux](https://penny64.codeberg.page/hellclient-downloads/linux/hell)
+* [Mac](https://penny64.codeberg.page/hellclient-downloads/mac/hell)
--- a/web/release.sh
+++ b/web/release.sh
@@ -1,8 +1,8 @@
 #!/bin/sh
 
 echo "Building Linux"
-GOOS=linux GOARCH=amd64 go build -o ./linux/hell ../.
+GOOS=linux GOARCH=amd64 go build -o ./downloads/linux/hell ../.
 echo "Building Mac"
-GOOS=darwin GOARCH=amd64 go build -o ./mac/hell ../.
+GOOS=darwin GOARCH=amd64 go build -o ./downloads/mac/hell ../.
 echo "Building Windows"
-GOOS=windows GOARCH=amd64 go build -o ./win/hell.exe ../.
\ No newline at end of file
+GOOS=windows GOARCH=amd64 go build -o ./downloads/win/hell.exe ../.
--