diff options
| author | 2022-12-05 12:12:35 +0100 | |
|---|---|---|
| committer | 2022-12-05 12:12:35 +0100 | |
| commit | deced47b8872b0a8cf997105e258b38cd5de1f7e (patch) | |
| tree | dc8aeaa7463ef883da1ee02ce6bdeaf77f8912c9 | |
| parent | Merge pull request 'Handle /favicon.ico' (#12) from kensanata/snac2:favicon i... (diff) | |
| download | snac2-deced47b8872b0a8cf997105e258b38cd5de1f7e.tar.gz snac2-deced47b8872b0a8cf997105e258b38cd5de1f7e.tar.xz snac2-deced47b8872b0a8cf997105e258b38cd5de1f7e.zip | |
Updated TODO.
| -rw-r--r-- | TODO.md | 6 |
1 files changed, 2 insertions, 4 deletions
| @@ -2,16 +2,12 @@ | |||
| 2 | 2 | ||
| 3 | ## Open | 3 | ## Open |
| 4 | 4 | ||
| 5 | Add (back) the `passwd` command line option. | ||
| 6 | |||
| 7 | Add an ?skip=NNN parameter to the admin page, to see older timeline. | 5 | Add an ?skip=NNN parameter to the admin page, to see older timeline. |
| 8 | 6 | ||
| 9 | Add support for Edit + Note on input. | 7 | Add support for Edit + Note on input. |
| 10 | 8 | ||
| 11 | Add domain/subdomain flexibility according to https://codeberg.org/grunfink/snac2/issues/3 | 9 | Add domain/subdomain flexibility according to https://codeberg.org/grunfink/snac2/issues/3 |
| 12 | 10 | ||
| 13 | Add this pull request https://codeberg.org/grunfink/snac2/pulls/9 | ||
| 14 | |||
| 15 | Add 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). | 11 | Add 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 | ||
| 17 | Add (back) the possibility to attach an image by URL. | 13 | Add (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). | |||
| 189 | Dropping 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). | 185 | Dropping 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 | ||
| 191 | Idea 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). | 187 | Idea 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 | |||
| 189 | Add this pull request https://codeberg.org/grunfink/snac2/pulls/9 (2022-12-05T12:12:19+0100). | ||