aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-09-27 00:52:10 +0000
committerdam <dam@gudinoff>2022-09-27 00:52:10 +0000
commit6265ee44562abfe5ca38f18d10663462c700937d (patch)
tree07d2d14a7755610793f128af2e3230db02ccaacb /readme.md
parenta35524b221949e33ea12c60d3fd77912f9a60217 (diff)
downloadtask-time-tracker-6265ee44562abfe5ca38f18d10663462c700937d.tar.zst
task-time-tracker-6265ee44562abfe5ca38f18d10663462c700937d.zip
Implemented is_empty_string. Made sure that string_buffer has enought space for MAX_TASK_NAME and size_x. Fixed input row for creating and renaming tasks.
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index 4ca6c10..15a890f 100644
--- a/readme.md
+++ b/readme.md
@@ -29,6 +29,10 @@ 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.
+- [ ] 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?