aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-08-31 17:13:09 +0000
committerdam <dam@gudinoff>2022-08-31 17:13:09 +0000
commitda47dcec5c4f73c5ebdc542ee209b3ee289b947f (patch)
tree705fc1b7547e984357b3852a132e45558712e0d0 /readme.md
parentf1f5a61dd8db0349a0f9e611eef3c348a96f23d6 (diff)
downloadtask-time-tracker-da47dcec5c4f73c5ebdc542ee209b3ee289b947f.tar.zst
task-time-tracker-da47dcec5c4f73c5ebdc542ee209b3ee289b947f.zip
Reduced DB_MAX_CAP for nearest power-of-two. Fixed export_to_csv to clean commas and use size_t and ptrdiff_t instead of uin32_t indexes. Protected GUI against database reaching its maximum capacity.
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index bff27b5..08972d9 100644
--- a/readme.md
+++ b/readme.md
@@ -15,11 +15,11 @@ Task Time Tracker
- [x] Change capacity to size_t.
- [x] Change active_task to active_task_ptrdiff.
- [x] use selected_task_ptrdiff?
+- [x] Make sure task names don't include commas ',';
- [ ] On compact layout, start task names right after the vertical line, otherwise, add a space (as is now).
- [ ] Allow two view modes: one to iew non-archived tasks; another to view archived tasks.
- [ ] To add a new task, create it and enter the task-name-edit mode. To edit, use the ACS_CKBOARD to show empty spaces and ACS_LARROW and ACS_RARROW to show continuation on horizontal direction.
- [ ] Status of task will allow to keep counting time even when the process gets terminated forcefully;
-- [ ] Make sure task names don't include commas ',';
- [ ] Review code: char !uint8_t;
- [ ] Change task order (use task_t tmp_task + memcpy);
- [ ] Create task using keys: `c` and `C`;