2025-02-21 11:30:52 +01:00
|
|
|
Changes in version 1.22:
|
2025-02-21 10:09:52 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
The option '-e, --reproduce', which can recover a missing (zeroed) sector in
|
|
|
|
a lzip file, has been added. For it to work, two things are required:
|
|
|
|
- The same version of the lzip tool that created the file.
|
|
|
|
- A reference file containing the uncompressed data corresponding to the
|
|
|
|
missing compressed data of the zeroed sector, plus some context data
|
|
|
|
before and after them.
|
|
|
|
Thanks to Nissanka Gooneratne for his help in testing the reproduce mode.
|
2025-02-21 11:26:09 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
The options '--lzip-level', '--lzip-name', and '--reference-file', auxiliary
|
|
|
|
to '-e, --reproduce', have been added.
|
2025-02-21 11:26:09 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
Option aliases '--dump-tdata', '--remove-tdata', and '--strip-tdata' have
|
|
|
|
been removed.
|
2025-02-21 11:20:21 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
When decompressing or testing, lziprecover now reports an error if a file
|
|
|
|
name is empty (lziprecover -t "").
|
2025-02-21 11:26:09 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
Option '-o, --output' now behaves like '-c, --stdout', but sending the
|
|
|
|
output unconditionally to a file instead of to standard output. See the new
|
|
|
|
description of '-o' in the manual. This change is backwards compatible only
|
|
|
|
when decompressing from standard input alone. Therefore commands like:
|
|
|
|
lziprecover -d -o foo - bar.lz < foo.lz
|
|
|
|
must now be split into:
|
|
|
|
lziprecover -d -o foo - < foo.lz
|
|
|
|
lziprecover -d bar.lz
|
|
|
|
or rewritten as:
|
|
|
|
lziprecover -d - bar.lz < foo.lz > foo
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
When using '-c' or '-o', lziprecover now checks whether the output is a
|
|
|
|
terminal only once.
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
Lziprecover now does not even open the output file if the input file is a
|
|
|
|
terminal.
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
'--ignore-errors' now makes '--decompress' and '--test' ignore data errors
|
|
|
|
and continue decompressing the remaining members in the file, keeping input
|
|
|
|
files unchanged.
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
'--ignore-errors --range-decompress' now decompresses a truncated last
|
|
|
|
member. It also returns 0 if only ignored errors (format errors or data
|
|
|
|
errors) are found.
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
'--ignore-errors' now considers that any fragment of file starting with a
|
|
|
|
valid header and large enough to be a member is a (corrupt) member, not a
|
|
|
|
gap, even if it lacks a valid trailer.
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
The words 'decompressed' and 'compressed' have been replaced with the
|
|
|
|
shorter 'out' and 'in' in the verbose output when decompressing or testing.
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
Several compiler warnings have been fixed. (Reported by Nissanka Gooneratne).
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
Option '--list' now reports corruption or truncation of the last header in a
|
|
|
|
multimenber file specifically instead of showing the generic message "Last
|
|
|
|
member in input file is truncated or corrupt."
|
2025-02-21 11:28:40 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
The debug options '-E, --debug-reproduce', '-M, --md5sum', and
|
|
|
|
'-U, --unzcrash' have been added.
|
2025-02-21 11:29:28 +01:00
|
|
|
|
2025-02-21 11:30:52 +01:00
|
|
|
The commands needed to extract files from a tar.lz archive have been
|
|
|
|
documented in the manual, in the output of '--help', and in the man page.
|
|
|
|
|
|
|
|
The new chapter 'Reproducing one sector' has been added to the manual.
|
|
|
|
|
|
|
|
The new sections 'Merging with a backup' and 'Reproducing a mailbox' have
|
|
|
|
been added to the manual.
|
|
|
|
|
|
|
|
The debug options for experts have been documented in the manual.
|
|
|
|
|
|
|
|
Lzip 1.16 (or clzip 1.6) or newer is required to run the tests.
|
|
|
|
|
|
|
|
9 new test files have been added to the testsuite.
|