Version 2.8

This commit is contained in:
Yorhel 2025-03-05 11:10:11 +01:00
parent af7163acf6
commit bda0cafe95
4 changed files with 9 additions and 3 deletions

View file

@ -1,6 +1,12 @@
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
# 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
- Still requires Zig 0.12 or 0.13
- Support transparent reading/writing of zstandard-compressed JSON

View file

@ -19,7 +19,7 @@ C version (1.x).
## Requirements
- Zig 0.12 or 0.13.
- Zig 0.14
- Some sort of POSIX-like OS
- ncurses
- libzstd

2
ncdu.1
View file

@ -1,6 +1,6 @@
.\" SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
.\" SPDX-License-Identifier: MIT
.Dd November 19, 2024
.Dd March 5, 2025
.Dt NCDU 1
.Os
.Sh NAME

View file

@ -1,7 +1,7 @@
// SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
// SPDX-License-Identifier: MIT
pub const program_version = "2.7";
pub const program_version = "2.8";
const std = @import("std");
const model = @import("model.zig");