bottom/TODO.md

56 lines
1.5 KiB
Markdown
Raw Normal View History

2019-09-10 02:31:03 +03:00
# To-Do List
## Pre-release (bare minimum)
2019-09-10 02:31:03 +03:00
* ~~Get each function working as a POC~~
* ~~Separate each component for readability, finalize project structure~~
* ~~Refreshing - how are we doing that? Are we allowing individual refresh periods per component?~~
* ~~Write tui display, charting~~
* ~~FIX PROCESSES AHHHHHH~~
2019-09-10 02:31:03 +03:00
~~* Scrolling in at least processes~~
* Keybindings
2019-09-17 04:45:48 +03:00
~~* Legend gets in the way at too small of a height... maybe modify tui a bit more to fix this.~~
2019-09-17 03:33:25 +03:00
## After making public
2019-09-12 03:41:11 +03:00
* Tests
2019-09-17 01:47:49 +03:00
* Mouse + key events conflict? Make it so that some events don't clog up the loop if they are not valid keys!
2019-09-16 23:18:42 +03:00
* Header should be clear on current sorting direction!
* Scaling in and out (zoom), may need to show zoom levels
* It would be maybe a good idea to see if we can run the process calculation across ALL cpus...?
* ~~Add custom error because it's really messy~~ Done, but need to implement across rest of app!
* Remove any ``unwrap()``, ensure no crashing! Might have to use this: <https://doc.rust-lang.org/std/panic/fn.catch_unwind.html>
2019-09-10 02:31:03 +03:00
* Scrolling event in lists
* Switching between panels
* Truncate columns if needed for tables
2019-09-11 07:52:51 +03:00
* Refactor everything because it's a mess
* Test for Windows support, mac support, other. May be doable, depends on sysinfo and how much I know about other OSes probably.
2019-09-10 02:31:03 +03:00
* Efficiency!!!
2019-09-10 02:31:03 +03:00
* Filtering in processes (that is, allow searching)
2019-09-10 02:31:03 +03:00
* Help screen
2019-09-16 23:18:42 +03:00
* Modularity
2019-09-17 04:45:48 +03:00
*~~Potentially process managing? Depends on the libraries...~~ Done on Linux!