aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-10-05 00:55:25 +0000
committerdam <dam@gudinoff>2022-10-05 00:55:25 +0000
commitf6f597f3074c27fc3b34987d00bce831dbdbd124 (patch)
tree7cb1649cd8bf0fb87274dde4a3bd3705ba4db8b3 /readme.md
parentb5fb37cc81740be4e8e08b04d5b489d79ba170d6 (diff)
downloadtask-time-tracker-f6f597f3074c27fc3b34987d00bce831dbdbd124.tar.zst
task-time-tracker-f6f597f3074c27fc3b34987d00bce831dbdbd124.zip
Implemented go-to action. Improved TUI.
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/readme.md b/readme.md
index 0de65fe..477a243 100644
--- a/readme.md
+++ b/readme.md
@@ -45,8 +45,8 @@ Task Time Tracker
- [x] Confirm delete_task operation by show confirmation message on selected line (horizontally centered).
- [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.
-- [ ] Change task order (using task_t tmp_task + memcpy);
-- [ ] Allow to jump to specific task by index number using key `g` and `G`;
+- [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`;
- [ ] Add/remove time using keys: `F3`;
- [ ] Add/remove time for any day of week;
- [ ] Implement logs as described above.