Version 2.8.2

This commit is contained in:
Yorhel 2025-05-01 15:00:06 +02:00
parent 58e6458130
commit 5b96a48f53
3 changed files with 6 additions and 2 deletions

View file

@ -1,6 +1,10 @@
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl> # SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
2.8.2 - 2025-05-01
- Still requires Zig 0.14
- Fix a build error on MacOS
2.8.1 - 2025-04-28 2.8.1 - 2025-04-28
- Still requires Zig 0.14 - Still requires Zig 0.14
- Fix integer overflow in binary export - Fix integer overflow in binary export

2
ncdu.1
View file

@ -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 April 28, 2025 .Dd May 1, 2025
.Dt NCDU 1 .Dt NCDU 1
.Os .Os
.Sh NAME .Sh NAME

View file

@ -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.1"; pub const program_version = "2.8.2";
const std = @import("std"); const std = @import("std");
const model = @import("model.zig"); const model = @import("model.zig");