From 74c91768a0d98962801a3c6e4b3a3d197b249cf6 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Sat, 16 Aug 2025 11:16:53 +0200 Subject: [PATCH] Version 2.9 --- ChangeLog | 7 +++++++ ncdu.1 | 2 +- src/main.zig | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 06c806c..6c4a9b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ # SPDX-FileCopyrightText: Yorhel # 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 - Still requires Zig 0.14 - Fix a build error on MacOS diff --git a/ncdu.1 b/ncdu.1 index 37715c0..42d9c38 100644 --- a/ncdu.1 +++ b/ncdu.1 @@ -1,6 +1,6 @@ .\" SPDX-FileCopyrightText: Yorhel .\" SPDX-License-Identifier: MIT -.Dd May 1, 2025 +.Dd August 16, 2025 .Dt NCDU 1 .Os .Sh NAME diff --git a/src/main.zig b/src/main.zig index cac56d9..3eb7264 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,7 +1,7 @@ // SPDX-FileCopyrightText: Yorhel // SPDX-License-Identifier: MIT -pub const program_version = "2.8.2"; +pub const program_version = "2.9"; const std = @import("std"); const model = @import("model.zig");