mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
Version 2.8
This commit is contained in:
parent
af7163acf6
commit
2b4c1ca03e
4 changed files with 9 additions and 3 deletions
|
|
@ -1,6 +1,12 @@
|
||||||
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
2.8 - 2025-03-05
|
||||||
|
- Now requires Zig 0.14
|
||||||
|
- Add support for @-prefixed lines to ignore errors in config file
|
||||||
|
- List all supported options in `--help`
|
||||||
|
- Use `kB` instead of `KB` in `--si` mode
|
||||||
|
|
||||||
2.7 - 2024-11-19
|
2.7 - 2024-11-19
|
||||||
- Still requires Zig 0.12 or 0.13
|
- Still requires Zig 0.12 or 0.13
|
||||||
- Support transparent reading/writing of zstandard-compressed JSON
|
- Support transparent reading/writing of zstandard-compressed JSON
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ C version (1.x).
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- Zig 0.12 or 0.13.
|
- Zig 0.14
|
||||||
- Some sort of POSIX-like OS
|
- Some sort of POSIX-like OS
|
||||||
- ncurses
|
- ncurses
|
||||||
- libzstd
|
- libzstd
|
||||||
|
|
|
||||||
2
ncdu.1
2
ncdu.1
|
|
@ -1,6 +1,6 @@
|
||||||
.\" SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
.\" SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
||||||
.\" SPDX-License-Identifier: MIT
|
.\" SPDX-License-Identifier: MIT
|
||||||
.Dd November 19, 2024
|
.Dd March 5, 2025
|
||||||
.Dt NCDU 1
|
.Dt NCDU 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pub const program_version = "2.7";
|
pub const program_version = "2.8";
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const model = @import("model.zig");
|
const model = @import("model.zig");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue