Version 2.7

This commit is contained in:
Yorhel 2024-11-19 14:41:50 +01:00
parent 49d43f89a1
commit 5ed3cbd39a
3 changed files with 11 additions and 2 deletions

View file

@ -1,6 +1,15 @@
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
# SPDX-License-Identifier: MIT
2.7 - 2024-11-19
- Still requires Zig 0.12 or 0.13
- Support transparent reading/writing of zstandard-compressed JSON
- Add `--compress` and `--export-block-size` options
- Perform tilde expansion on paths in the config file
- Fix JSON import of escaped UTF-16 surrogate pairs
- Fix incorrect field in root item when exporting to the binary format
- Add -Dstrip build flag
2.6 - 2024-09-27
- Still requires Zig 0.12 or 0.13
- Add dependency on libzstd

2
ncdu.1
View file

@ -1,6 +1,6 @@
.\" SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
.\" SPDX-License-Identifier: MIT
.Dd October 26, 2024
.Dd November 19, 2024
.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.6";
pub const program_version = "2.7";
const std = @import("std");
const model = @import("model.zig");