mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Version 2.9
This commit is contained in:
parent
ac4d689e22
commit
74c91768a0
3 changed files with 9 additions and 2 deletions
|
|
@ -1,6 +1,13 @@
|
||||||
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
2.9 - 2025-08-16
|
||||||
|
- Still requires Zig 0.14
|
||||||
|
- Add --delete-command option to replace the built-in file deletion
|
||||||
|
- Move term cursor to selected option in delete confirmation window
|
||||||
|
- Support binary import on older Linux kernels lacking statx() (may break
|
||||||
|
again in the future, Zig does not officially support such old kernels)
|
||||||
|
|
||||||
2.8.2 - 2025-05-01
|
2.8.2 - 2025-05-01
|
||||||
- Still requires Zig 0.14
|
- Still requires Zig 0.14
|
||||||
- Fix a build error on MacOS
|
- Fix a build error on MacOS
|
||||||
|
|
|
||||||
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 May 1, 2025
|
.Dd August 16, 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.8.2";
|
pub const program_version = "2.9";
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const model = @import("model.zig");
|
const model = @import("model.zig");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue