summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2022-12-05 12:12:35 +0100
committerGravatar default2022-12-05 12:12:35 +0100
commitdeced47b8872b0a8cf997105e258b38cd5de1f7e (patch)
treedc8aeaa7463ef883da1ee02ce6bdeaf77f8912c9
parentMerge pull request 'Handle /favicon.ico' (#12) from kensanata/snac2:favicon i... (diff)
downloadsnac2-deced47b8872b0a8cf997105e258b38cd5de1f7e.tar.gz
snac2-deced47b8872b0a8cf997105e258b38cd5de1f7e.tar.xz
snac2-deced47b8872b0a8cf997105e258b38cd5de1f7e.zip
Updated TODO.
-rw-r--r--TODO.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/TODO.md b/TODO.md
index b0f007f..cda2757 100644
--- a/TODO.md
+++ b/TODO.md
@@ -2,16 +2,12 @@
2 2
3## Open 3## Open
4 4
5Add (back) the `passwd` command line option.
6
7Add an ?skip=NNN parameter to the admin page, to see older timeline. 5Add an ?skip=NNN parameter to the admin page, to see older timeline.
8 6
9Add support for Edit + Note on input. 7Add support for Edit + Note on input.
10 8
11Add domain/subdomain flexibility according to https://codeberg.org/grunfink/snac2/issues/3 9Add domain/subdomain flexibility according to https://codeberg.org/grunfink/snac2/issues/3
12 10
13Add this pull request https://codeberg.org/grunfink/snac2/pulls/9
14
15Add support for uploading the avatar, instead of needing an URL to an image. As a kludgy workaround, you can post something with an attached image, copy the auto-generated URL and use it. You can even delete the post, as attached images are never deleted (I said it was kludgy). 11Add support for uploading the avatar, instead of needing an URL to an image. As a kludgy workaround, you can post something with an attached image, copy the auto-generated URL and use it. You can even delete the post, as attached images are never deleted (I said it was kludgy).
16 12
17Add (back) the possibility to attach an image by URL. 13Add (back) the possibility to attach an image by URL.
@@ -189,3 +185,5 @@ Add an RSS to the local timeline (2022-11-18T11:43:54+0100).
189Dropping on input those messages that have their parent hidden is not a good idea, as children of *these* dropped messages will pass unharmed (2022-11-28T11:34:56+0100). 185Dropping on input those messages that have their parent hidden is not a good idea, as children of *these* dropped messages will pass unharmed (2022-11-28T11:34:56+0100).
190 186
191Idea for a new disk layout: timelines stored like in git (2 character directories and then the md5.json inside); one append-only index with entry ids, read backwards (easy because md5 binary ids have a constant size); children lists as append-only files stored inside the timeline directories with almost the same names as the parent entry; liked-by and announced-by lists as append-only files of actor ids. No _snac metadata inside the message (But, what about the referrer? With this layout, do I need it?). The instance storage may even be global, not per user; this could help in very big instances (but will this be a use-case for snac? not probably) (2022-12-04T06:49:55+0100). 187Idea for a new disk layout: timelines stored like in git (2 character directories and then the md5.json inside); one append-only index with entry ids, read backwards (easy because md5 binary ids have a constant size); children lists as append-only files stored inside the timeline directories with almost the same names as the parent entry; liked-by and announced-by lists as append-only files of actor ids. No _snac metadata inside the message (But, what about the referrer? With this layout, do I need it?). The instance storage may even be global, not per user; this could help in very big instances (but will this be a use-case for snac? not probably) (2022-12-04T06:49:55+0100).
188
189Add this pull request https://codeberg.org/grunfink/snac2/pulls/9 (2022-12-05T12:12:19+0100).