1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-24 18:42:05 +00:00

turns out some people don't know systems are patched upon, and not on the fly

This commit is contained in:
flb 2021-02-09 15:10:12 +01:00
parent 682e023d68
commit 314bd06407
6 changed files with 13 additions and 14 deletions

View file

@ -160,10 +160,10 @@ all: $(BUILD)
$(ROMFS):
@[ -d $@ ] || mkdir -p $@
@echo Merging ROMFS...
@cp -ruf $(CURDIR)/$(BOREALIS_PATH)/resources/. $(CURDIR)/$(ROMFS)/
@cp -ruf $(CURDIR)/$(BOREALIS_PATH)/resources/i18n/. $(CURDIR)/$(ROMFS)/i18n/
@cp -ruf $(CURDIR)/$(ROMFS)/i18n/zh-CN/. $(CURDIR)/$(ROMFS)/i18n/zh-Hans/
@cp -ruf $(CURDIR)/$(ROMFS)/i18n/zh-TW/. $(CURDIR)/$(ROMFS)/i18n/zh-Hant/
@rm $(CURDIR)/$(ROMFS)/i18n/*/installer.json $(CURDIR)/$(ROMFS)/i18n/*/main.json $(CURDIR)/$(ROMFS)/i18n/*/popup.json
@rm $(CURDIR)/$(ROMFS)/i18n/*/installer.json $(CURDIR)/$(ROMFS)/i18n/*/main.json $(CURDIR)/$(ROMFS)/i18n/*/popup.json $(CURDIR)/$(ROMFS)/i18n/*/custom_layout.json
@$(MAKE) -C $(CURDIR)/rcm -f $(CURDIR)/rcm/Makefile
@cp $(CURDIR)/rcm/output/aio_rcm.bin $(CURDIR)/$(ROMFS)/aio_rcm.bin
#@$(MAKE) -C $(CURDIR)/aiosu-forwarder -f $(CURDIR)/aiosu-forwarder/Makefile

View file

@ -1,5 +0,0 @@
{
"first_button": "First button",
"second_button": "Second button",
"third_button": "Third button"
}

View file

@ -69,6 +69,7 @@
"v2_0_1_text": "\uE016 Fixed a bug not letting the user click no when asked if they want to install hekate.n\uE016 Correct a bunch of typos.",
"v2_1_0": "v2.1.0",
"v2_1_0_text": "\uE016 Switched to a better way to get links.",
"v2_1_1_text": "\uE016 Added a friendly reminder to reboot for new sigpatches to apply",
"Ok_button": "Ok",
"cheats_page.cpp":"",
@ -79,6 +80,7 @@
"cheat_delete_all_cheat": "Delete all cheats",
"cheat_Deleting": "Deleting...",
"cheat_All_done": "All done!",
"please_reboot": "The changes will take effect at the next reboot.",
"cheastlips_title": "Cheatslips cheats",
"get_cheatslips": "Download CheatSlips.com cheat sheets",

View file

@ -1,5 +0,0 @@
{
"first_button": "Premier bouton",
"second_button": "Deuxième bouton",
"third_button": "Troisième bouton"
}

View file

@ -85,9 +85,12 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true)
verTitles.push_back("menus/v2_0_1"_i18n );
changes.push_back("menus/v2_0_1_text"_i18n );
verTitles.push_back("2.1.0");
verTitles.push_back("v2.1.0");
changes.push_back("menus/v2_1_0_text"_i18n );
verTitles.push_back("v2.1.1");
changes.push_back("menus/v2_1_1_text"_i18n );
int nbVersions = verTitles.size();
items.reserve(nbVersions);
for(int i = nbVersions -1 ; i >= 0; i--){

View file

@ -87,7 +87,11 @@ ListDownloadTab::ListDownloadTab(archiveType type) :
new WorkerPage(stagedFrame, "menus/list_extracting"_i18n , [type](){extractArchive(type);})
);
stagedFrame->addStage(
new ConfirmPage(stagedFrame, "menus/list_All"_i18n , true)
new ConfirmPage(stagedFrame,
(type == sigpatches) ?
"menus/list_All"_i18n + "\n" + "menus/please_reboot"_i18n :
"menus/list_All"_i18n,
true)
);
brls::Application::pushView(stagedFrame);
});