summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-11-09 09:11:35 +0100
committerYorhel <git@yorhel.nl>2021-11-09 09:11:35 +0100
commit14b90444c97078d2d47e0c16d4e724c93357be54 (patch)
tree8ce4215e894232a6a03c19a227ea9fae79beeb05
parent5b462cfb7a0486db20e0a3e83af899b4b768ec6f (diff)
Version 2.0-beta3v2.0-beta3
-rw-r--r--ChangeLog10
-rw-r--r--README.md2
-rw-r--r--src/main.zig2
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 52ea325..ba46bed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,16 @@
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
# SPDX-License-Identifier: MIT
+2.0-beta3 - 2021-11-09
+ - Requires Zig 0.8 or 0.8.1
+ - Add lots of new CLI flags to configure ncdu
+ - Add configuration file support
+ - Add 'dark-bg' color scheme and use that by default
+ - Fix not enabling -x by default
+ - Fix export feature
+ - Fix import of "special" dirs and files
+ - Fix double-slash display in file browser
+
2.0-beta2 - 2021-07-31
- Requires Zig 0.8
- Significantly reduce memory usage for hard links
diff --git a/README.md b/README.md
index 1fa29af..a7fb43e 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ C version (1.x).
## Requirements
-- Zig 0.8
+- Zig 0.8 or 0.8.1
- Some sort of POSIX-like OS
- ncurses libraries and header files
diff --git a/src/main.zig b/src/main.zig
index 8482f86..e7b7786 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -1,7 +1,7 @@
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
// SPDX-License-Identifier: MIT
-pub const program_version = "2.0-beta2";
+pub const program_version = "2.0-beta3";
const std = @import("std");
const model = @import("model.zig");