mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-28 12:22:02 +00:00
version bump
This commit is contained in:
parent
2ffa9c40a6
commit
5dd914d79e
4 changed files with 8 additions and 2 deletions
2
Makefile
2
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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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":"",
|
||||
|
|
|
@ -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--){
|
||||
|
|
Loading…
Reference in a new issue