From 28d9eaecab52ecc128c3b678c1ada748674039f8 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Fri, 27 Sep 2024 10:49:22 +0200 Subject: [PATCH] Version 2.6 --- ChangeLog | 11 +++++++++++ src/main.zig | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cbbcd0a..3148b1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,17 @@ # SPDX-FileCopyrightText: Yorhel # 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 diff --git a/src/main.zig b/src/main.zig index 7c4b44c..bdf98ef 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.5"; +pub const program_version = "2.6"; const std = @import("std"); const model = @import("model.zig");