From c3a16d6a0e1ec8a72aae423bd9758cbd05de2bca Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Wed, 31 Aug 2022 06:04:38 +0900 Subject: [PATCH] meta: Update some copyright years --- LICENSE | 2 +- apps/calculator.c | 4 ++-- apps/file-browser.c | 4 ++-- apps/terminal.c | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index 35545030..b8a7d452 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ University of Illinois/NCSA Open Source License -Copyright (c) 2011-2021 K Lange, et al. (hereafter [fullname]). All rights reserved. +Copyright (c) 2011-2022 K Lange, et al. (hereafter [fullname]). All rights reserved. Developed by: ToaruOS (hereafter [project]) diff --git a/apps/calculator.c b/apps/calculator.c index 00e74338..f49c4d8f 100644 --- a/apps/calculator.c +++ b/apps/calculator.c @@ -9,7 +9,7 @@ * @copyright * This file is part of ToaruOS and is released under the terms * of the NCSA / University of Illinois License - see LICENSE.md - * Copyright (C) 2021 K. Lange + * Copyright (C) 2021-2022 K. Lange */ #include #include @@ -278,7 +278,7 @@ static void _menu_action_help(struct MenuEntry * entry) { static void _menu_action_about(struct MenuEntry * entry) { /* Show About dialog */ char about_cmd[1024] = "\0"; - strcat(about_cmd, "about \"About Calculator\" /usr/share/icons/48/calculator.png \"Calculator\" \"© 2021 K. Lange\n-\nPart of ToaruOS, which is free software\nreleased under the NCSA/University of Illinois\nlicense.\n-\n%https://toaruos.org\n%https://github.com/klange/toaruos\" "); + strcat(about_cmd, "about \"About Calculator\" /usr/share/icons/48/calculator.png \"Calculator\" \"© 2021-2022 K. Lange\n-\nPart of ToaruOS, which is free software\nreleased under the NCSA/University of Illinois\nlicense.\n-\n%https://toaruos.org\n%https://github.com/klange/toaruos\" "); char coords[100]; sprintf(coords, "%d %d &", (int)window->x + (int)window->width / 2, (int)window->y + (int)window->height / 2); strcat(about_cmd, coords); diff --git a/apps/file-browser.c b/apps/file-browser.c index 86aa65a4..47ee63e0 100644 --- a/apps/file-browser.c +++ b/apps/file-browser.c @@ -9,7 +9,7 @@ * @copyright * This file is part of ToaruOS and is released under the terms * of the NCSA / University of Illinois License - see LICENSE.md - * Copyright (C) 2018-2021 K. Lange + * Copyright (C) 2018-2022 K. Lange */ #include #include @@ -1487,7 +1487,7 @@ static void _menu_action_delete(struct MenuEntry * entry) { static void _menu_action_about(struct MenuEntry * entry) { /* Show About dialog */ char about_cmd[1024] = "\0"; - strcat(about_cmd, "about \"About File Browser\" /usr/share/icons/48/folder.png \"ToaruOS File Browser\" \"© 2018-2021 K. Lange\n-\nPart of ToaruOS, which is free software\nreleased under the NCSA/University of Illinois\nlicense.\n-\n%https://toaruos.org\n%https://github.com/klange/toaruos\" "); + strcat(about_cmd, "about \"About File Browser\" /usr/share/icons/48/folder.png \"ToaruOS File Browser\" \"© 2018-2022 K. Lange\n-\nPart of ToaruOS, which is free software\nreleased under the NCSA/University of Illinois\nlicense.\n-\n%https://toaruos.org\n%https://github.com/klange/toaruos\" "); char coords[100]; sprintf(coords, "%d %d &", (int)main_window->x + (int)main_window->width / 2, (int)main_window->y + (int)main_window->height / 2); strcat(about_cmd, coords); diff --git a/apps/terminal.c b/apps/terminal.c index e19e3c11..fca5e2c9 100644 --- a/apps/terminal.c +++ b/apps/terminal.c @@ -10,7 +10,7 @@ * @copyright * This file is part of ToaruOS and is released under the terms * of the NCSA / University of Illinois License - see LICENSE.md - * Copyright (C) 2013-2021 K. Lange + * Copyright (C) 2013-2022 K. Lange */ #include #include @@ -2281,7 +2281,7 @@ static void _menu_action_toggle_free_size(struct MenuEntry * self) { static void _menu_action_show_about(struct MenuEntry * self) { char about_cmd[1024] = "\0"; - strcat(about_cmd, "about \"About Terminal\" /usr/share/icons/48/utilities-terminal.png \"ToaruOS Terminal\" \"© 2013-2021 K. Lange\n-\nPart of ToaruOS, which is free software\nreleased under the NCSA/University of Illinois\nlicense.\n-\n%https://toaruos.org\n%https://github.com/klange/toaruos\" "); + strcat(about_cmd, "about \"About Terminal\" /usr/share/icons/48/utilities-terminal.png \"ToaruOS Terminal\" \"© 2013-2022 K. Lange\n-\nPart of ToaruOS, which is free software\nreleased under the NCSA/University of Illinois\nlicense.\n-\n%https://toaruos.org\n%https://github.com/klange/toaruos\" "); char coords[100]; sprintf(coords, "%d %d &", (int)window->x + (int)window->width / 2, (int)window->y + (int)window->height / 2); strcat(about_cmd, coords);