Version 2.2.2 + copyright year bump

This commit is contained in:
Yorhel 2023-01-19 08:00:27 +01:00
parent c002d9fa92
commit ec233ff33a
13 changed files with 18 additions and 14 deletions

View file

@ -1,6 +1,10 @@
# SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl> # SPDX-FileCopyrightText: 2021-2023 Yoran Heling <projects@yorhel.nl>
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
2.2.2 - 2023-01-19
- Now requires Zig 0.10 or 0.10.1
- That's it, pretty much.
2.2.1 - 2022-10-25 2.2.1 - 2022-10-25
- Still requires Zig 0.9.0 or 0.9.1 - Still requires Zig 0.9.0 or 0.9.1
- Fix bug with 'dark' and 'off' color themes on FreeBSD and MacOS - Fix bug with 'dark' and 'off' color themes on FreeBSD and MacOS

View file

@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl> # SPDX-FileCopyrightText: 2021-2023 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,4 +1,4 @@
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 Yoran Heling <projects@yorhel.nl>
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
pub const program_version = "2.2.1"; pub const program_version = "2.2.2";
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-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> /* SPDX-FileCopyrightText: 2021-2023 Yoran Heling <projects@yorhel.nl>
* SPDX-License-Identifier: MIT * SPDX-License-Identifier: MIT
*/ */

View file

@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 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-2022 Yoran Heling <projects@yorhel.nl> // SPDX-FileCopyrightText: 2021-2023 Yoran Heling <projects@yorhel.nl>
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
const std = @import("std"); const std = @import("std");