1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-09 20:21:45 +00:00

AboutTab: add json-c to dependencies list.

This commit is contained in:
Pablo Curiel 2021-07-23 03:42:26 -04:00
parent 3afe5caa7a
commit 6bb693b493
3 changed files with 4 additions and 1 deletions

View file

@ -104,6 +104,7 @@
#define LIBUSBHSFS_URL "https://github.com/DarkMatterCore/libusbhsfs"
#define FATFS_URL "http://elm-chan.org/fsw/ff/00index_e.html"
#define LZ4_URL "https://github.com/lz4/lz4"
#define JSON_C_URL "https://github.com/json-c/json-c"
#define DISCORD_SERVER_URL "https://discord.gg/SCbbcQx"

View file

@ -8,7 +8,8 @@
"line_00": "\uE016 {0} is powered by Borealis, a hardware-accelerated UI library: {1}.",
"line_01": "\uE016 USB Mass Storage device support is powered by libusbhsfs: {0}.",
"line_02": "\uE016 FatFs is used to mount FAT volumes from the eMMC storage: {0}.",
"line_03": "\uE016 LZ4 is used to decompress NSO binaries: {0}."
"line_03": "\uE016 LZ4 is used to decompress NSO binaries: {0}.",
"line_04": "\uE016 json-c is used to parse JSON-formatted data: {0}."
},
"acknowledgments": {

View file

@ -57,6 +57,7 @@ namespace nxdt::views
this->addView(new AboutTabLabel(brls::LabelStyle::SMALL, i18n::getStr("about_tab/dependencies/line_01"_i18n, LIBUSBHSFS_URL)));
this->addView(new AboutTabLabel(brls::LabelStyle::SMALL, i18n::getStr("about_tab/dependencies/line_02"_i18n, FATFS_URL)));
this->addView(new AboutTabLabel(brls::LabelStyle::SMALL, i18n::getStr("about_tab/dependencies/line_03"_i18n, LZ4_URL)));
this->addView(new AboutTabLabel(brls::LabelStyle::SMALL, i18n::getStr("about_tab/dependencies/line_04"_i18n, JSON_C_URL)));
/* Acknowledgments. */
this->addView(new brls::Header("about_tab/acknowledgments/header"_i18n));