Version 2.0.1 + copyright year bump

This commit is contained in:
Yorhel 2022-01-01 16:01:47 +01:00
parent ba26e6621b
commit 01f1e9188a
13 changed files with 19 additions and 14 deletions

View file

@ -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.

View file

@ -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.

View file

@ -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
--> -->

View file

@ -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");

View file

@ -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

View file

@ -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");

View file

@ -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");

View file

@ -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");

View file

@ -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");

View file

@ -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
*/ */

View file

@ -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");

View file

@ -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.

View file

@ -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");