mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
Compare commits
2 commits
653c3bfe70
...
5b96a48f53
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b96a48f53 | ||
|
|
58e6458130 |
4 changed files with 7 additions and 3 deletions
|
|
@ -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
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 April 28, 2025
|
.Dd May 1, 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.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");
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,7 @@ fn statAt(parent: std.fs.Dir, name: [:0]const u8, follow: bool, symlink: *bool)
|
||||||
.hasgid = true,
|
.hasgid = true,
|
||||||
.hasmode = true,
|
.hasmode = true,
|
||||||
},
|
},
|
||||||
.mtime = clamp(model.Ext, .mtime, stat.mtim.sec),
|
.mtime = clamp(model.Ext, .mtime, stat.mtime().sec),
|
||||||
.uid = truncate(model.Ext, .uid, stat.uid),
|
.uid = truncate(model.Ext, .uid, stat.uid),
|
||||||
.gid = truncate(model.Ext, .gid, stat.gid),
|
.gid = truncate(model.Ext, .gid, stat.gid),
|
||||||
.mode = truncate(model.Ext, .mode, stat.mode),
|
.mode = truncate(model.Ext, .mode, stat.mode),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue