summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/TODO.md b/TODO.md
index ce0afbd..6d4b430 100644
--- a/TODO.md
+++ b/TODO.md
@@ -26,8 +26,6 @@ Add a per-account toggle to [un]mute their Announces.
26 26
27Add domain/subdomain flexibility according to https://codeberg.org/grunfink/snac2/issues/3 27Add domain/subdomain flexibility according to https://codeberg.org/grunfink/snac2/issues/3
28 28
29Implement HTTP caches (If-None-Match / ETag). I'm not sure if it's worth the effort.
30
31The 'history' pages are just monthly HTML snapshots of the local timeline. This is ok and cheap and easy, but is problematic if you e.g. intentionally delete a post because it will remain there in the history forever. If you activate local timeline purging, purged entries will remain in the history as 'ghosts', which may or may not be what the user wants. 29The 'history' pages are just monthly HTML snapshots of the local timeline. This is ok and cheap and easy, but is problematic if you e.g. intentionally delete a post because it will remain there in the history forever. If you activate local timeline purging, purged entries will remain in the history as 'ghosts', which may or may not be what the user wants.
32 30
33Implement bulleted lists. Mastodon is crap and won't show them, but other implementations (Friendica, Pleroma) will do. 31Implement bulleted lists. Mastodon is crap and won't show them, but other implementations (Friendica, Pleroma) will do.
@@ -260,3 +258,5 @@ Fix premature purge of actor by hardlinking the actor object inside the user `fo
260Replace weird, vestigial 'touch-by-append-spaces' in actor_get() with a more proper call to `utimes()` (2023-06-23T06:46:56+0200). 258Replace weird, vestigial 'touch-by-append-spaces' in actor_get() with a more proper call to `utimes()` (2023-06-23T06:46:56+0200).
261 259
262With this new disk layout, hidden posts (and their children) can be directly skipped when rendering the HTML timeline (are there any other implications?) (2023-06-23T06:48:51+0200). 260With this new disk layout, hidden posts (and their children) can be directly skipped when rendering the HTML timeline (are there any other implications?) (2023-06-23T06:48:51+0200).
261
262Implement HTTP caches (If-None-Match / ETag) (2023-07-02T11:11:20+0200).