mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
Version 2.6
This commit is contained in:
parent
61d7fc8473
commit
cae3eaa5f2
2 changed files with 12 additions and 1 deletions
11
ChangeLog
11
ChangeLog
|
|
@ -1,6 +1,17 @@
|
|||
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
2.6 - 2024-09-27
|
||||
- Still requires Zig 0.12 or 0.13
|
||||
- Add dependency on libzstd
|
||||
- Add new export format to support threaded export and low-memory browsing
|
||||
- Add `-O` and `--compress-level` CLI flags
|
||||
- Add progress indicator to hardlink counting stage
|
||||
- Fix displaying and exporting zero values when extended info is not available
|
||||
- Fix clearing screen in some error cases
|
||||
- Fix uncommon edge case in hardlink counting on refresh
|
||||
- Use integer math instead of floating point to format numbers
|
||||
|
||||
2.5 - 2024-07-24
|
||||
- Still requires Zig 0.12 or 0.13
|
||||
- Add parallel scanning with `-t,--threads` CLI flags
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
// SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
pub const program_version = "2.5";
|
||||
pub const program_version = "2.6";
|
||||
|
||||
const std = @import("std");
|
||||
const model = @import("model.zig");
|
||||
|
|
|
|||
Loading…
Reference in a new issue