ncdu 1.14.2

This commit is contained in:
Yorhel 2020-02-10 16:12:56 +01:00
parent 2042aa6ca1
commit 442da67055
23 changed files with 109 additions and 8 deletions

View file

@ -20,6 +20,12 @@ the incidental article on this site. Enjoy your stay!
<!-- These announcements are parsed by mkfeed.pl, see that file for formatting -->
## Announcements <a href="/feed.atom"><img src="/img/feed_icon.png" alt="Atom feed"></a>
`2020-02-10` - ncdu 1.14.2 released <!-- tags: ncdu, link: /ncdu -->
: Another minor bugfix release. This fixed compilation on GCC 10, reduces
memory usage for hardlink detection a little bit and fixes a minor display
issue when scanning more than 10 million files. [Ncdu homepage](/ncdu) -
[Changelog](/ncdu/changes).
`2019-08-13` - New article: From SQL to Nested Data Structures <!-- link: /doc/sqlobject -->
: How to easily fetch complex nested data structures from a normalized
relational database. [Read more.](/doc/sqlobject)

View file

@ -9,13 +9,13 @@ POSIX-like environment with ncurses installed.
## Download
Latest version
: 1.14.1 ([ncdu-1.14.1.tar.gz](/download/ncdu-1.14.1.tar.gz) - [changes](/ncdu/changes))
: 1.14.2 ([ncdu-1.14.2.tar.gz](/download/ncdu-1.14.2.tar.gz) - [changes](/ncdu/changes))
I also have convenient static binaries for Linux
[i486](/download/ncdu-linux-i486-1.14.1b.tar.gz),
[x86_64](/download/ncdu-linux-x86_64-1.14.1b.tar.gz),
[ARM](/download/ncdu-linux-arm-1.14.1b.tar.gz) and
[AArch64](/download/ncdu-linux-aarch64-1.14.1b.tar.gz). Download, extract
[i486](/download/ncdu-linux-i486-1.14.2.tar.gz),
[x86_64](/download/ncdu-linux-x86_64-1.14.2.tar.gz),
[ARM](/download/ncdu-linux-arm-1.14.2.tar.gz) and
[AArch64](/download/ncdu-linux-aarch64-1.14.2.tar.gz). Download, extract
and run; no compilation or installation necessary (uses
[musl](http://www.musl-libc.org/)).

View file

@ -28,8 +28,8 @@ additions to the existing format.
## Metadata
The `<metadata>` element is a JSON object holding whatever (short)
metadata you'd want. This block is currently (1.9-1.13) ignored by ncdu when
The `<metadata>` element is a JSON object holding whatever (short) metadata
you'd want. This block is currently (1.9-1.14.2) ignored by ncdu when
importing, but it writes out the following keys when exporting:
progname
@ -95,7 +95,7 @@ ino
: Number. Inode number as reported by `lstat().st_ino`. Together with the Device
ID this uniquely identifies a file in this dump. In the case of hard links, two
objects may appear with the same (`dev`,`ino`) combination. A value of 0 is
assumed if this field is absent. This is currently (ncdu 1.9-1.13) not a
assumed if this field is absent. This is currently (ncdu 1.9-1.14.2) not a
problem as long as the `hlnkc` field is false, otherwise it will consider
everything with the same `dev` and empty `ino` values as a single hardlinked
file. Accepted values are in the range of `0 <= ino < 2^64`.