1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-07 23:07:25 +01:00

bump version

This commit is contained in:
flb 2022-01-05 23:05:29 +01:00
parent 09cd4c08d6
commit 29269e82bd
5 changed files with 8 additions and 3 deletions

View file

@ -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

2
add2line.sh Normal file
View file

@ -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

View file

@ -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",

View file

@ -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];

View file

@ -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);