diff --git a/host/nxdt_host.py b/host/nxdt_host.py index 7a52b2e..d7c7add 100644 --- a/host/nxdt_host.py +++ b/host/nxdt_host.py @@ -3,7 +3,7 @@ """ * nxdt_host.py * - * Copyright (c) 2021, DarkMatterCore . + * Copyright (c) 2021-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * @@ -40,7 +40,6 @@ import logging import queue import shutil import time -import datetime import struct import usb.core import usb.util @@ -68,7 +67,7 @@ WINDOW_HEIGHT = 470 APP_VERSION = '0.3' # Copyright year. -COPYRIGHT_YEAR = '2021' +COPYRIGHT_YEAR = '2021-2022' # USB VID/PID pair. USB_DEV_VID = 0x057E @@ -122,11 +121,7 @@ USB_STATUS_HOST_IO_ERROR = 8 SCRIPT_TITLE = "{} host script v{}".format(USB_DEV_PRODUCT, APP_VERSION) # Copyright text. -now = datetime.datetime.now() -cur_year = now.year -COPYRIGHT_TEXT = "Copyright (c) {}".format(COPYRIGHT_YEAR) -if cur_year > int(COPYRIGHT_YEAR): COPYRIGHT_TEXT += "-{}".format(cur_year) -COPYRIGHT_TEXT += ", {}".format(USB_DEV_MANUFACTURER) +COPYRIGHT_TEXT = "Copyright (c) {}, {}".format(COPYRIGHT_YEAR, USB_DEV_MANUFACTURER) # Messages displayed as labels. SERVER_START_MSG = 'Please connect a Nintendo Switch console running {}.'.format(USB_DEV_PRODUCT) diff --git a/include/about_tab.hpp b/include/about_tab.hpp index a1ffe3a..cc5c2d0 100644 --- a/include/about_tab.hpp +++ b/include/about_tab.hpp @@ -1,7 +1,7 @@ /* * about_tab.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/async_task.hpp b/include/async_task.hpp index 3e22681..10c2758 100644 --- a/include/async_task.hpp +++ b/include/async_task.hpp @@ -1,7 +1,7 @@ /* * async_task.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * Based on attcs' C++ implementation at: * https://github.com/attcs/AsyncTask/blob/master/asynctask.h. diff --git a/include/core/aes.h b/include/core/aes.h index 8edc8ff..8ef7ccf 100644 --- a/include/core/aes.h +++ b/include/core/aes.h @@ -1,7 +1,7 @@ /* * aes.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/bfttf.h b/include/core/bfttf.h index e987941..d8690b1 100644 --- a/include/core/bfttf.h +++ b/include/core/bfttf.h @@ -2,7 +2,7 @@ * bftff.h * * Copyright (c) 2018, simontime. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/bktr.h b/include/core/bktr.h index 8f3c2c7..4958e12 100644 --- a/include/core/bktr.h +++ b/include/core/bktr.h @@ -2,7 +2,7 @@ * bktr.h * * Copyright (c) 2018-2020, SciresM. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/cert.h b/include/core/cert.h index c2f0ec2..a4ef8bd 100644 --- a/include/core/cert.h +++ b/include/core/cert.h @@ -1,7 +1,7 @@ /* * cert.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/cnmt.h b/include/core/cnmt.h index cee2de5..afbf249 100644 --- a/include/core/cnmt.h +++ b/include/core/cnmt.h @@ -1,7 +1,7 @@ /* * cnmt.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/config.h b/include/core/config.h index 80da4d5..cc90107 100644 --- a/include/core/config.h +++ b/include/core/config.h @@ -1,7 +1,7 @@ /* * config.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/elf_symbol.h b/include/core/elf_symbol.h index bd8d8ec..cc116ae 100644 --- a/include/core/elf_symbol.h +++ b/include/core/elf_symbol.h @@ -2,7 +2,7 @@ * elf_symbol.h * * Copyright (c) 1991-2020, Linus Torvalds and Linux Kernel project contributors. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/es.h b/include/core/es.h index b32992d..9c99410 100644 --- a/include/core/es.h +++ b/include/core/es.h @@ -2,7 +2,7 @@ * es.h * * Copyright (c) 2018-2020, Addubz. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/fs_ext.h b/include/core/fs_ext.h index b23aee3..10e2367 100644 --- a/include/core/fs_ext.h +++ b/include/core/fs_ext.h @@ -1,7 +1,7 @@ /* * fs_ext.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/gamecard.h b/include/core/gamecard.h index 2685bd9..04d4009 100644 --- a/include/core/gamecard.h +++ b/include/core/gamecard.h @@ -1,7 +1,7 @@ /* * gamecard.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/hfs.h b/include/core/hfs.h index 3704daf..9bab70c 100644 --- a/include/core/hfs.h +++ b/include/core/hfs.h @@ -1,7 +1,7 @@ /* * hfs.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/http.h b/include/core/http.h index 888c83e..b060431 100644 --- a/include/core/http.h +++ b/include/core/http.h @@ -1,7 +1,7 @@ /* * http.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/keys.h b/include/core/keys.h index 586b547..331bb6d 100644 --- a/include/core/keys.h +++ b/include/core/keys.h @@ -3,7 +3,7 @@ * * Copyright (c) 2018-2020, SciresM. * Copyright (c) 2019, shchmue. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/legal_info.h b/include/core/legal_info.h index a4a4d60..a28a9cc 100644 --- a/include/core/legal_info.h +++ b/include/core/legal_info.h @@ -1,7 +1,7 @@ /* * legal_info.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/mem.h b/include/core/mem.h index d821b0d..944ab9e 100644 --- a/include/core/mem.h +++ b/include/core/mem.h @@ -2,7 +2,7 @@ * mem.h * * Copyright (c) 2019, shchmue. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nacp.h b/include/core/nacp.h index 63d6ed4..158c6af 100644 --- a/include/core/nacp.h +++ b/include/core/nacp.h @@ -1,7 +1,7 @@ /* * nacp.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nca.h b/include/core/nca.h index b72fbf3..2b94dfb 100644 --- a/include/core/nca.h +++ b/include/core/nca.h @@ -1,7 +1,7 @@ /* * nca.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/npdm.h b/include/core/npdm.h index efd7065..69d947e 100644 --- a/include/core/npdm.h +++ b/include/core/npdm.h @@ -1,7 +1,7 @@ /* * npdm.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nso.h b/include/core/nso.h index cfcaffb..706072c 100644 --- a/include/core/nso.h +++ b/include/core/nso.h @@ -1,7 +1,7 @@ /* * nso.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nxdt_bfsar.h b/include/core/nxdt_bfsar.h index 593db52..498c0ee 100644 --- a/include/core/nxdt_bfsar.h +++ b/include/core/nxdt_bfsar.h @@ -1,7 +1,7 @@ /* * nxdt_bfsar.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nxdt_includes.h b/include/core/nxdt_includes.h index 85f71dc..f71b990 100644 --- a/include/core/nxdt_includes.h +++ b/include/core/nxdt_includes.h @@ -1,7 +1,7 @@ /* * nxdt_includes.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nxdt_json.h b/include/core/nxdt_json.h index 79df47c..af760b3 100644 --- a/include/core/nxdt_json.h +++ b/include/core/nxdt_json.h @@ -1,7 +1,7 @@ /* * nxdt_json.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nxdt_log.h b/include/core/nxdt_log.h index 3e697b3..a245abc 100644 --- a/include/core/nxdt_log.h +++ b/include/core/nxdt_log.h @@ -1,7 +1,7 @@ /* * nxdt_log.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/nxdt_utils.h b/include/core/nxdt_utils.h index b7ccc40..c3c6866 100644 --- a/include/core/nxdt_utils.h +++ b/include/core/nxdt_utils.h @@ -1,7 +1,7 @@ /* * nxdt_utils.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/pfs.h b/include/core/pfs.h index 15bac51..44f45fe 100644 --- a/include/core/pfs.h +++ b/include/core/pfs.h @@ -1,7 +1,7 @@ /* * pfs.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/program_info.h b/include/core/program_info.h index 002dfc0..62bdadc 100644 --- a/include/core/program_info.h +++ b/include/core/program_info.h @@ -1,7 +1,7 @@ /* * program_info.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/romfs.h b/include/core/romfs.h index 5d9530d..cae3861 100644 --- a/include/core/romfs.h +++ b/include/core/romfs.h @@ -1,7 +1,7 @@ /* * romfs.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/rsa.h b/include/core/rsa.h index b30aaa7..85dfd98 100644 --- a/include/core/rsa.h +++ b/include/core/rsa.h @@ -3,7 +3,7 @@ * * Copyright (c) 2018-2019, SciresM. * Copyright (c) 2018-2019, The-4n. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/save.h b/include/core/save.h index 1e2f241..4ffe815 100644 --- a/include/core/save.h +++ b/include/core/save.h @@ -2,7 +2,7 @@ * save.h * * Copyright (c) 2019-2020, shchmue. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/service_guard.h b/include/core/service_guard.h index bcbcebc..767924b 100644 --- a/include/core/service_guard.h +++ b/include/core/service_guard.h @@ -2,7 +2,7 @@ * service_guard.h * * Copyright (c) 2018-2020, Switchbrew and libnx contributors. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/services.h b/include/core/services.h index 7d058c7..06d4343 100644 --- a/include/core/services.h +++ b/include/core/services.h @@ -1,7 +1,7 @@ /* * services.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/signature.h b/include/core/signature.h index 6157d5b..2a01bc3 100644 --- a/include/core/signature.h +++ b/include/core/signature.h @@ -1,7 +1,7 @@ /* * signature.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/tik.h b/include/core/tik.h index 05b07e0..4e2eb1b 100644 --- a/include/core/tik.h +++ b/include/core/tik.h @@ -1,7 +1,7 @@ /* * tik.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/title.h b/include/core/title.h index b5a6c80..7529dcd 100644 --- a/include/core/title.h +++ b/include/core/title.h @@ -1,7 +1,7 @@ /* * title.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/ums.h b/include/core/ums.h index 1ba93d7..1a29415 100644 --- a/include/core/ums.h +++ b/include/core/ums.h @@ -1,7 +1,7 @@ /* * ums.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/core/usb.h b/include/core/usb.h index c104c03..7c4f0c3 100644 --- a/include/core/usb.h +++ b/include/core/usb.h @@ -4,7 +4,7 @@ * Heavily based in usb_comms from libnx. * * Copyright (c) 2018-2020, Switchbrew and libnx contributors. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/defines.h b/include/defines.h index b455223..0e57015 100644 --- a/include/defines.h +++ b/include/defines.h @@ -1,7 +1,7 @@ /* * defines.h * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/download_task.hpp b/include/download_task.hpp index a8f173d..8a5fc47 100644 --- a/include/download_task.hpp +++ b/include/download_task.hpp @@ -1,7 +1,7 @@ /* * download_task.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/error_frame.hpp b/include/error_frame.hpp index 6313866..c32f3f6 100644 --- a/include/error_frame.hpp +++ b/include/error_frame.hpp @@ -1,7 +1,7 @@ /* * error_frame.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * Based on crash_frame.hpp from Borealis. * diff --git a/include/focusable_item.hpp b/include/focusable_item.hpp index c05565b..0f4d3a0 100644 --- a/include/focusable_item.hpp +++ b/include/focusable_item.hpp @@ -1,7 +1,7 @@ /* * focusable_item.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/gamecard_tab.hpp b/include/gamecard_tab.hpp index 4346da0..e4a6ae4 100644 --- a/include/gamecard_tab.hpp +++ b/include/gamecard_tab.hpp @@ -1,7 +1,7 @@ /* * gamecard_tab.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/layered_error_frame.hpp b/include/layered_error_frame.hpp index 0ae4670..a61eb47 100644 --- a/include/layered_error_frame.hpp +++ b/include/layered_error_frame.hpp @@ -1,7 +1,7 @@ /* * layered_error_frame.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/options_tab.hpp b/include/options_tab.hpp index 2b3a0e0..21ae39a 100644 --- a/include/options_tab.hpp +++ b/include/options_tab.hpp @@ -1,7 +1,7 @@ /* * options_tab.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/root_view.hpp b/include/root_view.hpp index 40e4816..9d8e883 100644 --- a/include/root_view.hpp +++ b/include/root_view.hpp @@ -1,7 +1,7 @@ /* * root_view.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/scope_guard.hpp b/include/scope_guard.hpp index c93ac4d..6044ab1 100644 --- a/include/scope_guard.hpp +++ b/include/scope_guard.hpp @@ -1,8 +1,8 @@ /* * scope_guard.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . * Copyright (c) 2018-2021, SciresM. + * Copyright (c) 2020-2022, DarkMatterCore . * * Scope guard logic lovingly taken from Andrei Alexandrescu's "Systemic Error Handling in C++". * diff --git a/include/tasks.hpp b/include/tasks.hpp index ad7ccbd..655db1c 100644 --- a/include/tasks.hpp +++ b/include/tasks.hpp @@ -1,7 +1,7 @@ /* * tasks.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/include/titles_tab.hpp b/include/titles_tab.hpp index bcae7e6..08af537 100644 --- a/include/titles_tab.hpp +++ b/include/titles_tab.hpp @@ -1,7 +1,7 @@ /* * titles_tab.hpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/libs/libusbhsfs b/libs/libusbhsfs index a7260e0..d6afc3c 160000 --- a/libs/libusbhsfs +++ b/libs/libusbhsfs @@ -1 +1 @@ -Subproject commit a7260e043b9d2b57fee823754b356223f43efa12 +Subproject commit d6afc3c2ba17158553397d1f1d3a607da661f2ba diff --git a/source/about_tab.cpp b/source/about_tab.cpp index 2b781e5..532c8d4 100644 --- a/source/about_tab.cpp +++ b/source/about_tab.cpp @@ -1,7 +1,7 @@ /* * about_tab.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/aes.c b/source/core/aes.c index 70a721f..a33400f 100644 --- a/source/core/aes.c +++ b/source/core/aes.c @@ -1,7 +1,7 @@ /* * aes.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/bfttf.c b/source/core/bfttf.c index 398d95b..fe35317 100644 --- a/source/core/bfttf.c +++ b/source/core/bfttf.c @@ -2,7 +2,7 @@ * bfttf.c * * Copyright (c) 2018, simontime. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/bktr.c b/source/core/bktr.c index 4f86ba6..6bbb889 100644 --- a/source/core/bktr.c +++ b/source/core/bktr.c @@ -2,7 +2,7 @@ * bktr.c * * Copyright (c) 2018-2020, SciresM. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/cert.c b/source/core/cert.c index d066468..44cd0c9 100644 --- a/source/core/cert.c +++ b/source/core/cert.c @@ -1,7 +1,7 @@ /* * cert.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/cnmt.c b/source/core/cnmt.c index 56c2fb6..35f42e7 100644 --- a/source/core/cnmt.c +++ b/source/core/cnmt.c @@ -1,7 +1,7 @@ /* * cnmt.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/config.c b/source/core/config.c index 12e9efd..57bca5d 100644 --- a/source/core/config.c +++ b/source/core/config.c @@ -1,7 +1,7 @@ /* * config.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/es.c b/source/core/es.c index 6bf6908..5db0c49 100644 --- a/source/core/es.c +++ b/source/core/es.c @@ -2,7 +2,7 @@ * es.c * * Copyright (c) 2018-2020, Addubz. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/fs_ext.c b/source/core/fs_ext.c index 2aa5c90..1afc5f7 100644 --- a/source/core/fs_ext.c +++ b/source/core/fs_ext.c @@ -1,7 +1,7 @@ /* * fs_ext.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/gamecard.c b/source/core/gamecard.c index 4f1197b..a668d08 100644 --- a/source/core/gamecard.c +++ b/source/core/gamecard.c @@ -1,7 +1,7 @@ /* * gamecard.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/hfs.c b/source/core/hfs.c index 6870cdc..f51884e 100644 --- a/source/core/hfs.c +++ b/source/core/hfs.c @@ -1,7 +1,7 @@ /* * hfs.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/http.c b/source/core/http.c index feb9c31..9a6190f 100644 --- a/source/core/http.c +++ b/source/core/http.c @@ -1,7 +1,7 @@ /* * http.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/keys.c b/source/core/keys.c index 5d5ebcd..3303545 100644 --- a/source/core/keys.c +++ b/source/core/keys.c @@ -3,7 +3,7 @@ * * Copyright (c) 2018-2020, SciresM. * Copyright (c) 2019, shchmue. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/legal_info.c b/source/core/legal_info.c index 391c179..388e859 100644 --- a/source/core/legal_info.c +++ b/source/core/legal_info.c @@ -1,7 +1,7 @@ /* * legal_info.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/mem.c b/source/core/mem.c index 22091ec..78393e3 100644 --- a/source/core/mem.c +++ b/source/core/mem.c @@ -2,7 +2,7 @@ * mem.c * * Copyright (c) 2019, shchmue. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/nacp.c b/source/core/nacp.c index a08d8da..534dc0c 100644 --- a/source/core/nacp.c +++ b/source/core/nacp.c @@ -1,7 +1,7 @@ /* * nacp.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/nca.c b/source/core/nca.c index 3ae9026..e22084e 100644 --- a/source/core/nca.c +++ b/source/core/nca.c @@ -1,7 +1,7 @@ /* * nca.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/npdm.c b/source/core/npdm.c index c676270..9fbcd04 100644 --- a/source/core/npdm.c +++ b/source/core/npdm.c @@ -1,7 +1,7 @@ /* * npdm.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/nso.c b/source/core/nso.c index 769aabb..b5f29af 100644 --- a/source/core/nso.c +++ b/source/core/nso.c @@ -1,7 +1,7 @@ /* * nso.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/nxdt_bfsar.c b/source/core/nxdt_bfsar.c index 911a797..3880dde 100644 --- a/source/core/nxdt_bfsar.c +++ b/source/core/nxdt_bfsar.c @@ -1,7 +1,7 @@ /* * nxdt_bfsar.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/nxdt_json.c b/source/core/nxdt_json.c index 9bf8417..50870d3 100644 --- a/source/core/nxdt_json.c +++ b/source/core/nxdt_json.c @@ -1,7 +1,7 @@ /* * nxdt_json.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/nxdt_log.c b/source/core/nxdt_log.c index 4964dee..172502b 100644 --- a/source/core/nxdt_log.c +++ b/source/core/nxdt_log.c @@ -1,7 +1,7 @@ /* * nxdt_log.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/nxdt_utils.c b/source/core/nxdt_utils.c index b554194..a5c4daa 100644 --- a/source/core/nxdt_utils.c +++ b/source/core/nxdt_utils.c @@ -1,7 +1,7 @@ /* * nxdt_utils.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/pfs.c b/source/core/pfs.c index f22936e..42ea745 100644 --- a/source/core/pfs.c +++ b/source/core/pfs.c @@ -1,7 +1,7 @@ /* * pfs.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/program_info.c b/source/core/program_info.c index 59497a6..4e9aba7 100644 --- a/source/core/program_info.c +++ b/source/core/program_info.c @@ -1,7 +1,7 @@ /* * program_info.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/romfs.c b/source/core/romfs.c index 8fb7f69..0db9ed8 100644 --- a/source/core/romfs.c +++ b/source/core/romfs.c @@ -1,7 +1,7 @@ /* * romfs.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/rsa.c b/source/core/rsa.c index 7b1d25b..c870aa8 100644 --- a/source/core/rsa.c +++ b/source/core/rsa.c @@ -3,7 +3,7 @@ * * Copyright (c) 2018-2019, SciresM. * Copyright (c) 2018-2019, The-4n. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/save.c b/source/core/save.c index ae06170..cba056d 100644 --- a/source/core/save.c +++ b/source/core/save.c @@ -2,7 +2,7 @@ * save.c * * Copyright (c) 2019-2020, shchmue. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/services.c b/source/core/services.c index 6e11090..23051a5 100644 --- a/source/core/services.c +++ b/source/core/services.c @@ -1,7 +1,7 @@ /* * services.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/tik.c b/source/core/tik.c index 0b1fd08..717f3d5 100644 --- a/source/core/tik.c +++ b/source/core/tik.c @@ -2,7 +2,7 @@ * tik.c * * Copyright (c) 2019-2020, shchmue. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/title.c b/source/core/title.c index 124c674..8b33933 100644 --- a/source/core/title.c +++ b/source/core/title.c @@ -1,7 +1,7 @@ /* * title.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/ums.c b/source/core/ums.c index 7ca15ba..b050cf6 100644 --- a/source/core/ums.c +++ b/source/core/ums.c @@ -1,7 +1,7 @@ /* * ums.c * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/core/usb.c b/source/core/usb.c index 820f2ce..ea533a3 100644 --- a/source/core/usb.c +++ b/source/core/usb.c @@ -4,7 +4,7 @@ * Heavily based in usb_comms from libnx. * * Copyright (c) 2018-2020, Switchbrew and libnx contributors. - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/error_frame.cpp b/source/error_frame.cpp index 0b02779..7b7e74e 100644 --- a/source/error_frame.cpp +++ b/source/error_frame.cpp @@ -1,7 +1,7 @@ /* * error_frame.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * Based on crash_frame.cpp from Borealis. * diff --git a/source/exception_handler.cpp b/source/exception_handler.cpp index 23f1658..36ea9a6 100644 --- a/source/exception_handler.cpp +++ b/source/exception_handler.cpp @@ -1,8 +1,8 @@ /* * exception_handler.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . * Copyright (c) 2019-2020, WerWolv. + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * Loosely based on debug_helpers.cpp from EdiZon-Rewrite. diff --git a/source/gamecard_tab.cpp b/source/gamecard_tab.cpp index b78bc5e..a2399de 100644 --- a/source/gamecard_tab.cpp +++ b/source/gamecard_tab.cpp @@ -1,7 +1,7 @@ /* * gamecard_tab.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/layered_error_frame.cpp b/source/layered_error_frame.cpp index d35a887..d7b6ec7 100644 --- a/source/layered_error_frame.cpp +++ b/source/layered_error_frame.cpp @@ -1,7 +1,7 @@ /* * layered_error_frame.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/main.cpp b/source/main.cpp index 644b252..5d0416b 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -1,7 +1,7 @@ /* * main.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/options_tab.cpp b/source/options_tab.cpp index f0f14cc..573af75 100644 --- a/source/options_tab.cpp +++ b/source/options_tab.cpp @@ -1,7 +1,7 @@ /* * options_tab.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/root_view.cpp b/source/root_view.cpp index 4b6e9f9..5f55af1 100644 --- a/source/root_view.cpp +++ b/source/root_view.cpp @@ -1,7 +1,7 @@ /* * root_view.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/tasks.cpp b/source/tasks.cpp index 49d3330..bf45343 100644 --- a/source/tasks.cpp +++ b/source/tasks.cpp @@ -1,7 +1,7 @@ /* * tasks.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). * diff --git a/source/titles_tab.cpp b/source/titles_tab.cpp index bc0503b..079c28c 100644 --- a/source/titles_tab.cpp +++ b/source/titles_tab.cpp @@ -1,7 +1,7 @@ /* * titles_tab.cpp * - * Copyright (c) 2020-2021, DarkMatterCore . + * Copyright (c) 2020-2022, DarkMatterCore . * * This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool). *