aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-10-10 23:47:40 +0000
committerdam <dam@gudinoff>2022-10-10 23:47:40 +0000
commitdd524b83197d85e04948634a1741a1bebe2907ef (patch)
tree70bece03397edb8f789a4dba0caafb7888120bb8 /readme.md
parentf6f597f3074c27fc3b34987d00bce831dbdbd124 (diff)
downloadtask-time-tracker-dd524b83197d85e04948634a1741a1bebe2907ef.tar.zst
task-time-tracker-dd524b83197d85e04948634a1741a1bebe2907ef.zip
Implemented move-to action. Improved TUI and action-keys.
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/readme.md b/readme.md
index 477a243..f045c66 100644
--- a/readme.md
+++ b/readme.md
@@ -46,16 +46,16 @@ Task Time Tracker
- [x] Check totals update speedup using https://gcc.gnu.org/onlinedocs/gcc/Integer-Overflow-Builtins.html
- For 1M entries, generic C code runs in 12.0ms while special approaches using builtins or SIMD takes around 9.5ms. Not worth the effort.
- [x] Allow to jump to specific task by index number using key `g` and `G`;
-- [ ] Move task to (using task_t tmp_task + memcpy) using key `m` and `M`;
+- [x] Move task to (using task_t tmp_task + memcpy) using key `m` and `M`;
+- [x] Rethink keys;
+ - [x] Create task using keys: `n` and `N`;
+ - [x] Delete task using key: delete;
+ - [x] Change task name using keys: `F2`;
+ - [x] Duplicate task using keys: `d` and `D`;
- [ ] Add/remove time using keys: `F3`;
- [ ] Add/remove time for any day of week;
- [ ] Implement logs as described above.
- [ ] Go over all `TODO` items;
-- [ ] Rethink keys;
- - [ ] Create task using keys: `c` and `C`;
- - [ ] Delete task using keys: `d` and `D`;
- - [ ] Change task name using keys: `F2`;
- - [ ] Clone task using keys: `r` and `R`;
- [ ] Cleanup `draw_tui`:
- Selected and active tasks should be drawn after everything else.
- Try printing each row;