mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Version 2.7
This commit is contained in:
parent
49d43f89a1
commit
4873a7c765
3 changed files with 11 additions and 2 deletions
|
|
@ -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
2
ncdu.1
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Reference in a new issue