mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Version 2.1.1
This commit is contained in:
parent
5f383966a9
commit
2e4f0f0bce
3 changed files with 8 additions and 2 deletions
|
|
@ -1,6 +1,12 @@
|
|||
# SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
2.1.1 - 2022-03-25
|
||||
- Still requires Zig 0.9.0 or 0.9.1
|
||||
- Fix potential crash when refreshing
|
||||
- Fix typo in --graph-style=eighth-block
|
||||
- Revert default --graph-style to hash characters
|
||||
|
||||
2.1 - 2022-02-07
|
||||
- Still requires Zig 0.9.0
|
||||
- Use natural sort order when sorting by file name
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ C version (1.x).
|
|||
|
||||
## Requirements
|
||||
|
||||
- Zig 0.9.0
|
||||
- Zig 0.9.0 or 0.9.1
|
||||
- Some sort of POSIX-like OS
|
||||
- ncurses libraries and header files
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
pub const program_version = "2.1";
|
||||
pub const program_version = "2.1.1";
|
||||
|
||||
const std = @import("std");
|
||||
const model = @import("model.zig");
|
||||
|
|
|
|||
Loading…
Reference in a new issue