diff --git a/Makefile b/Makefile index f4b0acb..92fa30c 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ DATA := data INCLUDES := include lib/zipper/include APP_TITLE := All-in-One Switch Updater APP_AUTHOR := HamletDuFromage -APP_VERSION := 1.2.5 +APP_VERSION := 1.2.6 TARGET := $(notdir $(CURDIR))-v$(APP_VERSION) ROMFS := resources diff --git a/README.md b/README.md index a85e814..89bb3b0 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Download the most popular Switch CFWs. After downloading the CFW archive, the pr ### ⬦ Update Sigpatches For Atmosphere. Downloads sigpatches, which are patches required for launching unofficial .NSPs. Both AMS and Hekate+AMS sigpatches are available. After downloading the sigpatches archive, the program will ask you whether you want to override your existing .ini files. -### ⬦ Download firmares +### ⬦ Download firmwares Download firmare files to `/firmware` that can then be installed using DayBreak or ChoiDuJour. ### ⬦ Download cheats @@ -51,6 +51,7 @@ I do not own, host nor distribute any of the files that can be downloaded with t ## Special thanks - [tiansongyu](https://github.com/tiansongyu) for bringing support for multi-language and for his Chinese translation. - [yyoossk](https://github.com/yyoossk) for the Japanese locale. +- [sergiou87](https://github.com/sergiou87) for the Spanish locale. ### Like the app? [//]: [![5cbed8a433a3f45a772abaf5_SupportMe_blue-p-500](https://user-images.githubusercontent.com/61667930/93899702-1a2b2680-fce4-11ea-9eaa-4e2b44eebe86.png)](https://ko-fi.com/hamletdufromage) diff --git a/resources/i18n/en-US/menus.json b/resources/i18n/en-US/menus.json index 9d51310..8ceebd0 100644 --- a/resources/i18n/en-US/menus.json +++ b/resources/i18n/en-US/menus.json @@ -40,6 +40,8 @@ "v1_2_4_text": "\uE016 Fixed app self-update", "v1_2_5": "v1.2.5", "v1_2_5_text": "\uE016 Improved japanese translation", + "v1_2_6": "v1.2.6", + "v1_2_6_text": "\uE016 Added spanish translation (thanks to 'https://github.com/sergiou87'", "Ok_button": "Ok", "cheats_page.cpp":"", diff --git a/source/changelog_page.cpp b/source/changelog_page.cpp index e511c95..a878a66 100644 --- a/source/changelog_page.cpp +++ b/source/changelog_page.cpp @@ -46,6 +46,9 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true) verTitles.push_back("menus/v1_2_5"_i18n ); changes.push_back("menus/v1_2_5_text"_i18n ); + verTitles.push_back("menus/v1_2_6"_i18n ); + changes.push_back("menus/v1_2_6_text"_i18n ); + int nbVersions = verTitles.size(); items.reserve(nbVersions); for(int i = nbVersions -1 ; i >= 0; i--){