From f6bffa40c7aa7d0f30a561fd228d608e5efd02ce Mon Sep 17 00:00:00 2001 From: Yorhel Date: Wed, 24 Jul 2024 14:07:17 +0200 Subject: [PATCH] Version 2.5 --- ChangeLog | 14 ++++++++++++++ src/main.zig | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a9e047f..cbbcd0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,20 @@ # SPDX-FileCopyrightText: Yorhel # SPDX-License-Identifier: MIT +2.5 - 2024-07-24 + - Still requires Zig 0.12 or 0.13 + - Add parallel scanning with `-t,--threads` CLI flags + - Improve JSON export and import performance + - `--exclude-kernfs` is no longer checked on the top-level scan path + - Fix entries sometimes not showing up after refresh + - Fix file descriptor leak with `--exclude-caches` checking + - Fix possible crash on invalid UTF8 when scanning in `-1` UI mode + - Fix JSON export and import of the "other filesystem" flag + - Fix JSON import containing directories with a read error + - Fix mtime display of 'special' files + - Fix edge case bad performance when deleting hardlinks with many links + - Increased memory use for hardlinks (by ~10% in extreme cases, sorry) + 2.4 - 2024-04-21 - Now requires Zig 0.12 - Revert default color scheme back to 'off' diff --git a/src/main.zig b/src/main.zig index 107f342..90c5d62 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.4"; +pub const program_version = "2.5"; const std = @import("std"); const model = @import("model.zig");