aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-09-27 22:54:59 +0000
committerdam <dam@gudinoff>2022-09-27 22:54:59 +0000
commit18d7ea57eaff295aaf3e9a72390793855980aefe (patch)
treeb38e26f6ff62ac6d813ad409ed80b72dcd0cfb50 /readme.md
parent6265ee44562abfe5ca38f18d10663462c700937d (diff)
downloadtask-time-tracker-18d7ea57eaff295aaf3e9a72390793855980aefe.tar.zst
task-time-tracker-18d7ea57eaff295aaf3e9a72390793855980aefe.zip
Tweaked layout structure and simplified draw_tui. Added archive title.
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/readme.md b/readme.md
index 15a890f..e5c40e8 100644
--- a/readme.md
+++ b/readme.md
@@ -29,11 +29,11 @@ Task Time Tracker
- [x] Review code: char !uint8_t;
- [x] Make sure that only one task is running at each time;
- [x] Mouse selection is broken due to entire TUI update: No, it was fixed by using `erase()` on the `draw_tui` instead of `clear()`;
-- [ ] I bet the headers are no longer being used all on a single cycle. Let's separate them and include "header_title_archive";
-- [ ] rename layout members: title_header, archive_header, total_header, days_headers, column_widths, column_alignments, headers_paddings.
-- [ ] using the archive header, we can remove the top-left-corner diamond on the archive.
+- [x] I bet the headers are no longer being used all on a single cycle. Let's separate them and include "header_title_archive";
+- [x] rename layout members: title_header, archive_header, total_header, days_headers, column_widths, column_alignments, headers_paddings.
+- [x] using the archive header, we can remove the top-left-corner diamond on the archive.
+- [x] Allow to cancel a rename_task operation: you can do it by leaving it blank.
- [ ] MAYBE... IS THIS REALLY NEEDED? add helper func: get_selected_screen_row(db*, out int selected_row); It seems to be used in KEY_F(1) and KEY_F(2) cases of input management.
-- [ ] Allow to cancel a rename_task operation.
- [ ] Improve total_times:
- Create function to recalculate them. Shouldn't take so long, right?
- Decide when this will run.