mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-15 18:18:41 -09:00
Version 2.0-beta3
This commit is contained in:
parent
5b462cfb7a
commit
14b90444c9
3 changed files with 12 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
|
@ -1,6 +1,16 @@
|
||||||
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
||||||
# SPDX-License-Identifier: MIT
|
# 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
|
2.0-beta2 - 2021-07-31
|
||||||
- Requires Zig 0.8
|
- Requires Zig 0.8
|
||||||
- Significantly reduce memory usage for hard links
|
- Significantly reduce memory usage for hard links
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ C version (1.x).
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- Zig 0.8
|
- Zig 0.8 or 0.8.1
|
||||||
- Some sort of POSIX-like OS
|
- Some sort of POSIX-like OS
|
||||||
- ncurses libraries and header files
|
- ncurses libraries and header files
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pub const program_version = "2.0-beta2";
|
pub const program_version = "2.0-beta3";
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const model = @import("model.zig");
|
const model = @import("model.zig");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue