ref: a9a45a3302ec39c8580419e60c5b521656ff9186
parent: ee490a5bbd01798cdb99684f6282462f836539f8
author: penny <penny@limitedideas.org>
date: Tue Oct 21 14:53:31 EDT 2025
update webpage with new download links + prepare for next release text
--- a/index.html
+++ b/index.html
@@ -236,13 +236,13 @@
available</p>
<ul>
<li><a
-href="https://penny64.codeberg.page/hellclient-downloads/win/hell.exe">Windows</a></li>
+href="https://codeberg.org/penny64/hellclient/releases/download/42ce929/hell_win.exe">Windows</a></li>
<li><a
-href="https://penny64.codeberg.page/hellclient-downloads/linux/hell">Linux</a></li>
+href="https://codeberg.org/penny64/hellclient/releases/download/42ce929/hell_linux">Linux</a></li>
<li><a
-href="https://penny64.codeberg.page/hellclient-downloads/mac/hell">Mac</a></li>
+href="https://codeberg.org/penny64/hellclient/releases/download/42ce929/hell_darwin">Mac</a></li>
<li><a
-href="https://penny64.codeberg.page/hellclient-downloads/plan9/hell">Plan
+href="https://codeberg.org/penny64/hellclient/releases/download/42ce929/hell_9">Plan
9</a></li>
</ul>
</body>
--- a/readme.md
+++ b/readme.md
@@ -51,7 +51,7 @@
##### Downloads
The [git repo](https://codeberg.org/penny64/hellclient) most likely has the most up to date code but static binaries are available
-* [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)
-* [Plan 9](https://penny64.codeberg.page/hellclient-downloads/plan9/hell)
+* [Windows](https://codeberg.org/penny64/hellclient/releases/download/$release_id/hell_win.exe)
+* [Linux](https://codeberg.org/penny64/hellclient/releases/download/$release_id/hell_linux)
+* [Mac](https://codeberg.org/penny64/hellclient/releases/download/$release_id/hell_darwin)
+* [Plan 9](https://codeberg.org/penny64/hellclient/releases/download/$release_id/hell_9)
--- a/web/release.sh
+++ b/web/release.sh
@@ -25,6 +25,7 @@
exit
fi
+echo $release_id > release_id
echo "Building Linux"
GOOS=linux GOARCH=amd64 go build -o ./downloads/linux/hell ../.
echo "Building Mac"
--- a/web/render_homepage.sh
+++ b/web/render_homepage.sh
@@ -1,3 +1,3 @@
#!/bin/sh
set -e
-pandoc --metadata 'mainfont=-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif' --metadata monobackgroundcolor=#f0f0f0 -V "maxwidth:95%" -V "margin-top:0" -V pagetitle:"hell for mastodon | hellclient for mastodon" --output ../index.html --to html --standalone ../readme.md
+pandoc --metadata 'mainfont=-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif' --metadata monobackgroundcolor=#f0f0f0 --lua-filter=links-to-html.lua -V "maxwidth:95%" -V "margin-top:0" -V pagetitle:"hell for mastodon | hellclient for mastodon" --output ../index.html --to html --standalone ../readme.md
--
⑨