ref: ab82ee0f8235b207976167b726243c826c49f0e4
parent: 361b180d7c6f6758baae3455252f808a1dc6c1f5
author: penny <penny@limitedideas.org>
date: Wed Oct 15 16:50:52 EDT 2025
primitive build infrastructure
--- a/index.html
+++ b/index.html
@@ -201,6 +201,7 @@
<li>Notifications</li>
<li>Threads</li>
</ul></li>
+<li>Media attachments/file attachments</li>
<li>Media downloading and previewing</li>
<li>Replies</li>
<li>Deletion</li>
@@ -214,7 +215,7 @@
<li>Post visibility control</li>
<li>Content warnings</li>
<li>Multiline input</li>
-<li>Markdown and HTML on supported intsances</li>
+<li>Markdown and HTML on supported instances</li>
<li>Notifications</li>
<li>Unread notifications</li>
<li>Following</li>
--- a/web/homepage.md
+++ b/web/homepage.md
@@ -15,6 +15,7 @@
* Profiles
* Notifications
* Threads
+* Media attachments/file attachments
* Media downloading and previewing
* Replies
* Deletion
@@ -28,7 +29,7 @@
* Post visibility control
* Content warnings
* Multiline input
-* Markdown and HTML on supported intsances
+* Markdown and HTML on supported instances
* Notifications
* Unread notifications
* Following
--- /dev/null
+++ b/web/release.sh
@@ -1,0 +1,8 @@
+#!/bin/sh
+
+echo "Building Linux"
+GOOS=linux GOARCH=amd64 go build -o ./linux/hell ../.
+echo "Building Mac"
+GOOS=darwin GOARCH=amd64 go build -o ./mac/hell ../.
+echo "Building Windows"
+GOOS=windows GOARCH=amd64 go build -o ./win/hell.exe ../.
\ No newline at end of file
--- /dev/null
+++ b/web/render_homepage.sh
@@ -1,0 +1,2 @@
+#!/bin/sh
+pandoc --metadata 'mainfont=-apple-system, BlinkMacSystemFont, Segoe UI, sans-serif' --metadata monobackgroundcolor=#f0f0f0 --output ../index.html --to html --standalone homepage.md
--
⑨