From 3864a75bb5caca839975bc9670945296ecc5e3f8 Mon Sep 17 00:00:00 2001 From: Sergey Shandar Date: Wed, 22 May 2024 13:45:26 -0700 Subject: [PATCH] Update tasks.md (#176) * Update tasks.md * Update tasks.md --- notes/tasks.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/notes/tasks.md b/notes/tasks.md index b8616fc3..15d81b92 100644 --- a/notes/tasks.md +++ b/notes/tasks.md @@ -1,7 +1,10 @@ # Tasks -- [ ] Fix `New 0 MB.` when adding directories. -- [ ] Fix progress when extracting directories. +- [ ] Fix `file already exists` when two `blockset` processes are working on the same repository. +- [ ] Fix `check` and add unit tests. + +- [x] Fix `New 0 MB.` when adding directories. +- [x] Fix progress when extracting directories. ## Epic Stories @@ -29,13 +32,13 @@ See: ### New Library Structure -- `IO-trait` a trait with a minimal set of I/O operations. +- `IO-trait` is a trait with a minimal set of I/O operations. - `common` a library with common functions, including I/O extensions. Depends on - `IO-trait` to extend the `IO` trait. -- `IO-impl` an implementation of `IO` for the local file system. Depends on +- `IO-impl` is an implementation of `IO` for the local file system. Depends on - `IO-trait`. - `common`. -- `IO-test` a mock implementation of `IO` for testing. Depends on +- `IO-test` is a mock implementation of `IO` for testing. Depends on - `IO-trait`. - `common`.