mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Version 2.0.1 + copyright year bump
This commit is contained in:
parent
ba26e6621b
commit
01f1e9188a
13 changed files with 19 additions and 14 deletions
|
|
@ -1,6 +1,11 @@
|
||||||
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
# SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
2.0.1 - 2022-01-01
|
||||||
|
- Still requires Zig 0.9.0
|
||||||
|
- Fix build failure to find 'wcwidth' on some systems
|
||||||
|
- Add ZIG_FLAGS option to Makefile
|
||||||
|
|
||||||
2.0 - 2021-12-21
|
2.0 - 2021-12-21
|
||||||
- Requires Zig 0.9.0
|
- Requires Zig 0.9.0
|
||||||
- That's the only change.
|
- That's the only change.
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -1,4 +1,4 @@
|
||||||
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
# SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Optional semi-standard Makefile with some handy tools.
|
# Optional semi-standard Makefile with some handy tools.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<!--
|
<!--
|
||||||
SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
SPDX-License-Identifier: MIT
|
SPDX-License-Identifier: MIT
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
|
||||||
2
ncdu.pod
2
ncdu.pod
|
|
@ -1,4 +1,4 @@
|
||||||
SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
SPDX-License-Identifier: MIT
|
SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
=head1 NAME
|
=head1 NAME
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pub const program_version = "2.0";
|
pub const program_version = "2.0.1";
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const model = @import("model.zig");
|
const model = @import("model.zig");
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
/* SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
* SPDX-License-Identifier: MIT
|
* SPDX-License-Identifier: MIT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
// Ncurses wrappers and TUI helper functions.
|
// Ncurses wrappers and TUI helper functions.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue