telodendria/TODO.txt

84 lines
2.1 KiB
Text
Raw Normal View History

2022-09-23 21:49:20 +00:00
Telodendria To-Do List
======================
2022-09-23 21:49:20 +00:00
Key:
[ ] Not Started
[x] Done
[~] In Progress
2022-09-28 20:25:49 +00:00
[!] Won't Fix
2022-09-23 21:49:20 +00:00
Milestone: v0.1.0
Due: January 1, 2023
---------------------
2022-09-23 21:49:20 +00:00
[~] Data abstraction layer
[ ] Database upgrades/migration path
[ ] Caching and cache control
[x] Make memory info access O(1)
2022-11-08 17:56:11 +00:00
[x] Make config option 'id' optional; print warning if not present started as root.
2022-11-06 22:02:24 +00:00
[x] Write install and uninstall scripts
2022-11-07 16:19:29 +00:00
[x] Add relayd example to contrib/
2022-11-06 22:02:24 +00:00
[x] Refactor man pages to be prefaced with 'telodendria-'
2022-11-11 01:10:16 +00:00
[ ] Document send-patch
2022-09-23 21:49:20 +00:00
Milestone: v0.2.0
Due: July 1, 2023
-----------------
2022-09-23 21:49:20 +00:00
2022-11-03 18:11:58 +00:00
[ ] Clean up memory API
[ ] Use double hashing instead of linear probing
[!] Store block info inside the block, not as a separate block
- This makes it too easy to clobber the memory information. By
making it a separate block, there's less of a chance of the
information getting destroyed. It's worth a few extra bytes of
memory to make accidents harder, I think.
2022-11-11 01:07:49 +00:00
[x] Add recipe to td script to upload patches to the Matrix room
[ ] Figure out how to write unit tests for array/hashmap/etc
2022-10-15 14:14:54 +00:00
[~] Convert documentation to man pages
[~] Internal API docs
[x] Array
[x] Base64
[ ] CanonicalJson
[ ] Config
2022-10-10 17:35:19 +00:00
[ ] API (Config.3)
[ ] File format (Config.5)
[ ] Constants
2022-10-10 19:22:18 +00:00
[x] HashMap
[ ] Http
[ ] HttpServer
[ ] Json
[ ] Log
[ ] Matrix
2022-10-10 17:35:19 +00:00
[x] Queue
[ ] Routes
[ ] TelodendriaConfig
[ ] Util
2022-10-13 17:13:00 +00:00
[ ] Memory
2022-10-24 17:44:52 +00:00
[ ] Db
2022-09-29 22:16:16 +00:00
Milestone: v1.0.0
-----------------
[~] client-Server API
[x] Error responses
[x] CORS headers
[x] /_matrix/client/versions
[x] Well-known URIs
[x] Make base-url optional in config
[x] Make identity-server optional in config
[ ] Client authentication
[ ] Capabilities negotiation
[ ] Server-Server API
[ ] Application Service API
[ ] Identity Service API
[ ] Push Gateway API
[ ] Room Versions
[ ] Create an OpenBSD package and get it submitted to ports
[ ] Create a command line tool to manage Telodendria
[ ] User management
[ ] Room management
[ ] Migrate from Synapse or Dendrite, whichever is more mainstream by
the time we get here.