mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Version 2.9.2
This commit is contained in:
parent
f452244576
commit
1b3d0a670e
3 changed files with 7 additions and 2 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.9.2 - 2025-10-24
|
||||||
|
- Still requires Zig 0.14 or 0.15
|
||||||
|
- Fix hang on loading config file when compiled with Zig 0.15.2
|
||||||
|
|
||||||
2.9.1 - 2025-08-21
|
2.9.1 - 2025-08-21
|
||||||
- Add support for building with Zig 0.15
|
- Add support for building with Zig 0.15
|
||||||
- Zig 0.14 is still supported
|
- Zig 0.14 is still supported
|
||||||
|
|
|
||||||
|
|
@ -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.9.1";
|
pub const program_version = "2.9.2";
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const model = @import("model.zig");
|
const model = @import("model.zig");
|
||||||
|
|
|
||||||
|
|
@ -231,7 +231,8 @@ pub const LineReader = if (@hasDecl(std.io, "bufferedReader")) struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn read(s: *@This()) !?[]u8 {
|
pub fn read(s: *@This()) !?[]u8 {
|
||||||
// Avoid takeDelimiterExclusive() for now, it's bugged in 0.15.2: https://github.com/ziglang/zig/issues/25664
|
// Can't use takeDelimiter() because that's not available in 0.15.1,
|
||||||
|
// Can't use takeDelimiterExclusive() because that changed behavior in 0.15.2.
|
||||||
const r = &s.rd.interface;
|
const r = &s.rd.interface;
|
||||||
const result = r.peekDelimiterInclusive('\n') catch |err| switch (err) {
|
const result = r.peekDelimiterInclusive('\n') catch |err| switch (err) {
|
||||||
error.EndOfStream => {
|
error.EndOfStream => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue