aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-02-12 14:23:08 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-02-12 14:23:08 +0100
commit84c9566aaf2dd456992b9b37a6324c09af055afb (patch)
treee4865ca6356c60403d48893bdf3552f6f9c35a21 /CHANGELOG.md
parent303680ebcd5adaac2934b63a0edc2d9d1a36d7fb (diff)
Update CHANGELOG.md
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b14b3cb..7cf9b4d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,13 +9,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support parsing [device] block size argument with SI suffix.
- Add a write-up on the on-disk format.
- A couple demo programs that make use of `libsquashfs`.
+- Add statistics counters to the block writer and processor.
### Changed
- For better compatibility, sqfs2tar appends `/` to directory names. (#37)
+- Extra data in sqfs_inode_generic_t no longer handled via payload pointers.
+- Add a currently unsued flag field to the id table create function.
+- Split off fragment table handling from data reader and writer into
+ dedicated fragment table data type.
+- Split data writer up into a block writer and a block processor.
+- All abstract data types inhert from an sqfs_object_t with common
+ functionality.
### Fixed
- Include sys/sysmacros.h on any GNU libc platform.
- Directory index accounting.
+- Memory leak in hard link detection code.
+- Broken iteration over directory children in sqfsdiff.
+- Data reader returning -1 instead of an error code.
+
+### Removed
+- A number of hook callbacks from the block writer.
+- sqfs_block_t from the public API.
## [0.8] - 2019-12-30
### Added