aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-11-14 22:54:40 +0000
committerdam <dam@gudinoff>2022-11-14 22:54:40 +0000
commit625b44ca131d4b74c73ffb32aef19c35aa08cb09 (patch)
tree3fd6f8e0c6bf53511828360e92b7393988a7861a /readme.md
parent53fba2d3899c95b996fc6950ba0ffd608aaf7ad6 (diff)
downloadtask-time-tracker-625b44ca131d4b74c73ffb32aef19c35aa08cb09.tar.zst
task-time-tracker-625b44ca131d4b74c73ffb32aef19c35aa08cb09.zip
Fixed bug on import_from_csv.
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 2e28b48..b241a57 100644
--- a/readme.md
+++ b/readme.md
@@ -60,13 +60,13 @@ Task Time Tracker
- [x] Replaced `sprintf` by `snprintf`;
- [x] Make sure that string_buffer bounds are respected;
- [x] Rename `MAX_TASK_NAME` to something more informative;
-- [ ] Compress code:
+- [x] Compress code:
- [x] Re-do sprint_time5_utf8: -12 delta LOC;
- [x] Re-do truncate_string_utf8: 0 delta LOC;
- [x] Implement `read_input_to_string_buffer`: -24 delta LOC;
- [x] Wrap malloc (and maybe others) in a function with error checking;
- [x] Move database actions into functions;
-- [ ] Fix bug: archiving/unarchiving task introduces " ," at end of name and increases the number of spaces before comma;
+- [x] Fix bug: archiving/unarchiving task introduces " ," at end of name and increases the number of spaces before comma;
- [ ] Check if draw_tui may be simplified by drawing entire lines of tasks at once and draw columns separators after;
- [ ] Review all code for bugs related to auto-cast on ptrdiff_t/size_t (signed/unsigned);
- [ ] Try to fix flickering of ncurses;