tweak changelog

This commit is contained in:
Michael Eischer 2023-06-08 19:12:26 +02:00
parent 098de3554c
commit 2beaa74892

View File

@ -1,14 +1,13 @@
Enhancement: Add --human-readable flag to ls and find commands Enhancement: Add `--human-readable` flag to `ls` and `find` commands
Previously, the `ls` and `find` commands showed with the `-l` option Previously, when using the -l option with the ls and find commands,
showed size in bytes, and did not have an option for a more human the displayed size was always in bytes, without an option for a more
readable format that converted these longer numbers into values such human readable format such as MiB or GiB.
as MiB or GiB
The new `--human-readable` option for `ls` and `find` when used with The new `--human-readable` option will convert longer size values into
the `-l` option will convert longer size values into more human friendly more human friendly values with an appropriate suffix depending on the
values, with an appropriate suffix depending on the output size. For output size. For example, a size of `14680064` will be shown as
example, a value of `14680064` will be shown as `14.000 MiB`. `14.000 MiB`.
https://github.com/restic/restic/issues/4159 https://github.com/restic/restic/issues/4159
https://github.com/restic/restic/pull/4351 https://github.com/restic/restic/pull/4351