aboutsummaryrefslogtreecommitdiffstats
path: root/TODO.md
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-21 13:25:38 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-21 13:25:38 -0400
commitd6472faae56121d53f87c8ccffe40cf0a3d815dc (patch)
tree4f3fb03b3de05102b6ee384501abbd14f7c931bf /TODO.md
parent2b81b8e150217e6e8b9557a17c0c7237af5c9f80 (diff)
downloadteleterm-d6472faae56121d53f87c8ccffe40cf0a3d815dc.tar.gz
teleterm-d6472faae56121d53f87c8ccffe40cf0a3d815dc.zip
add todo list
Diffstat (limited to 'TODO.md')
-rw-r--r--TODO.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/TODO.md b/TODO.md
new file mode 100644
index 0000000..d68ce95
--- /dev/null
+++ b/TODO.md
@@ -0,0 +1,39 @@
+these are things that i know need work (and i would welcome patches for), but
+i'm also interested in anything else you think would make this software more
+useful.
+
+* grpc
+ * although the existing hand-rolled protocol works fine, it does make it
+ annoying to deal with things like sending the traffic through http
+ proxies. pretty much the only reason this isn't using grpc is because i
+ couldn't get any of the existing grpc crates to work reasonably, but
+ that's likely more my fault than the fault of the crates themselves.
+ * grpc would also make it much easier to enable compression (ideally we
+ could just enable http compression at the library level), which is
+ something that would be enormously helpful here (most terminal output is
+ quite compressible)
+* block (server-side) and hide (client-side) functionality
+ * it's pretty important for any social software
+* integration tests
+ * for instance, spin up separate server, stream, and watch subprocesses,
+ and write tests for their stdout
+ * key_reader could also use some tests, although it's a bit tricky - i
+ basically want to be able to write a binary that uses key_reader, and
+ have the test spawn that binary as a subprocess and write tests against
+ that, but i'm not sure how to make cargo do that
+* watch ui improvements
+ * should be able to sort by more things than just idle time
+ * color more things (idle time colors might be useful, especially if
+ support is added for different sorting methods)
+ * get extended metadata about a stream somehow (maybe with shift+letter or
+ something?) - things like names of watchers, etc
+* different authentication methods
+ * adding new oauth providers should be pretty trivial
+ * mtls/client cert auth would also be pretty useful
+* some kind of indication during streaming for when a watcher connects
+ * visual bell should be pretty easy, but we might be able to be fancier by
+ drawing a popup on the terminal somewhere, and just refreshing the screen
+ from the buffer after some timeout
+ * if we go the popup drawing route, it could also potentially be used for
+ error message displays
+* ability to adjust `tt play` playback speed