From 29269e82bd49739faa95ef6b7ef8cf84396e326d Mon Sep 17 00:00:00 2001 From: flb Date: Wed, 5 Jan 2022 23:05:29 +0100 Subject: [PATCH] bump version --- Makefile | 2 +- add2line.sh | 2 ++ resources/i18n/fr/menus.json | 2 +- source/changelog_page.cpp | 3 +++ source/tools_tab.cpp | 2 +- 5 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 add2line.sh diff --git a/Makefile b/Makefile index 3273ca9..079b54d 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ DATA := data INCLUDES := include lib/zipper/include /lib/borealis/library/include/borealis/extern/nlohmann APP_TITLE := All-in-One Switch Updater APP_AUTHOR := HamletDuFromage -APP_VERSION := 2.16.2 +APP_VERSION := 2.16.3 TARGET := $(notdir $(CURDIR)) ROMFS := resources diff --git a/add2line.sh b/add2line.sh new file mode 100644 index 0000000..b34d110 --- /dev/null +++ b/add2line.sh @@ -0,0 +1,2 @@ +#/bin/bash +sed -nr 's|^\s*(\S+):.*\(\S+ \+ (0x[0-9a-f]+)\).*$|echo -n \1 : ; aarch64-none-elf-addr2line -e release-aio-switch-updater.elf -pCf -si \2|ep' $1 \ No newline at end of file diff --git a/resources/i18n/fr/menus.json b/resources/i18n/fr/menus.json index 5c64405..f076bcb 100644 --- a/resources/i18n/fr/menus.json +++ b/resources/i18n/fr/menus.json @@ -127,7 +127,7 @@ "update_bootloaders": "MÀJ des bootloaders", "update_sigpatches": "MÀJ des sigpatches", "download_firmware": "Téléch. des firmwares", - "download_cheats": "Téléch. des codes de triche", + "download_cheats": "Téléch. de cheats codes", "tools": "Outils", "launch_warning": "Veuillez prendre connaissance des points suivants avant d'utiliser cette application\u00a0:\n\n Renseignez-vous d'abord sur le processus de mise à jour manuel de la Switch. Cela vous aidera à mieux comprendre le fonctionnement de l'application et savoir quoi faire en cas de problème.\n Afin d'éviter tout risque de corruption de données, l'utilisation de cette application avec une carte SD formatée en exFAT est FORTEMENT déconseillé.\n\n Les dernières informations à propos des fonctionnalités ajoutées et/ou modifiées sont disponibles dans le menu Outils->Journal des modifications.\n\nCet écran ne sera pas réaffiché.", "footer_text": "v{} | {:.1f}Go disponibles", diff --git a/source/changelog_page.cpp b/source/changelog_page.cpp index 0544867..8a232f3 100644 --- a/source/changelog_page.cpp +++ b/source/changelog_page.cpp @@ -220,6 +220,9 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true) verTitles.push_back("v2.16.2"); changes.push_back("\uE016 Allow offline extraction of cheats.\n\uE016 Fixed extraction of the the complete cheat archive.\n\uE016 Fixed display bug for cheats extraction."); + verTitles.push_back("v2.16.2"); + changes.push_back("\uE016 Updated french localization (https://github.com/NotaInutilis)."); + for (int i = verTitles.size() - 1; i >= 0; i--) { listItem = new brls::ListItem(verTitles[i]); change = changes[i]; diff --git a/source/tools_tab.cpp b/source/tools_tab.cpp index 731c8ba..35dd996 100644 --- a/source/tools_tab.cpp +++ b/source/tools_tab.cpp @@ -37,7 +37,7 @@ ToolsTab::ToolsTab(const std::string& tag, const nlohmann::ordered_json& payload stagedFrame->addStage( new WorkerPage(stagedFrame, "menus/common/downloading"_i18n, []() { util::downloadArchive(APP_URL, contentType::app); })); stagedFrame->addStage( - new WorkerPage(stagedFrame, "menus/common/extracting"_i18n, [tag]() { util::extractArchive(contentType::app); })); + new WorkerPage(stagedFrame, "menus/common/extracting"_i18n, []() { util::extractArchive(contentType::app); })); stagedFrame->addStage( new ConfirmPage(stagedFrame, "menus/common/all_done"_i18n, true)); brls::Application::pushView(stagedFrame);