summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2023-04-12 15:00:56 +0200
committerGravatar default2023-04-12 15:00:56 +0200
commit082dd46da92dfe9cd4af9c1339651bd958fefc0a (patch)
treed192313e649aa84bd8df9d3de97632dfb9e3b8a4
parentAdded forgotten user cleanup in mastoapi_post_handler(). (diff)
downloadpenes-snac2-082dd46da92dfe9cd4af9c1339651bd958fefc0a.tar.gz
penes-snac2-082dd46da92dfe9cd4af9c1339651bd958fefc0a.tar.xz
penes-snac2-082dd46da92dfe9cd4af9c1339651bd958fefc0a.zip
Updated TODO.
-rw-r--r--TODO.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/TODO.md b/TODO.md
index 57a71b4..5e9343d 100644
--- a/TODO.md
+++ b/TODO.md
@@ -4,6 +4,8 @@
4 4
5Add a notification area, where recent events of interest would be easily seen. 5Add a notification area, where recent events of interest would be easily seen.
6 6
7Post edits should keep the image and the image description.
8
7Add a list of hashtags to drop. 9Add a list of hashtags to drop.
8 10
9Add a per-account toggle to [un]mute their Announces. 11Add a per-account toggle to [un]mute their Announces.
@@ -12,9 +14,7 @@ Add domain/subdomain flexibility according to https://codeberg.org/grunfink/snac
12 14
13## Wishlist 15## Wishlist
14 16
15Implement the ActivityPub C2S (Client to Server) API: https://www.w3.org/TR/activitypub/#client-to-server-interactions . The Android client at http://andstatus.org/ implements it, or so it seems. UPDATE: Wrong, AndStatus starts doing an OAuth query, that is totally not ActivityPub C2S. The number of real ActivityPub C2S clients out there is probably zero. 17Implement HTTP caches (If-None-Match / ETag). I'm not sure if it's worth the effort.
16
17Implement HTTP caches (If-None-Match / ETag). I'm not sure if it's worth.
18 18
19The '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. 19The '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.
20 20
@@ -221,3 +221,5 @@ Child indexes (*_c.idx) with a parent not present keep accumulating; not a real
221There are some hosts that keep returning 400 Bad Request to snac posts (e.g. hachyderm.io). I've investigated but still don't know where the problem is (2023-03-07T10:28:21+0100). 221There are some hosts that keep returning 400 Bad Request to snac posts (e.g. hachyderm.io). I've investigated but still don't know where the problem is (2023-03-07T10:28:21+0100).
222 222
223Fix `Like` and `Update` recipients (2023-03-07T10:28:36+0100). 223Fix `Like` and `Update` recipients (2023-03-07T10:28:36+0100).
224
225Implement the ActivityPub C2S (Client to Server) API: https://www.w3.org/TR/activitypub/#client-to-server-interactions . The Android client at http://andstatus.org/ implements it, or so it seems. UPDATE: Wrong, AndStatus starts doing an OAuth query, that is totally not ActivityPub C2S. The number of real ActivityPub C2S clients out there is probably zero. Abandoned now that I'm implementing the Mastodon API (2023-04-12T15:00:14+0200).