mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-12-29 10:56:01 +00:00
bump version
This commit is contained in:
parent
764548a9b6
commit
a015fd3161
4 changed files with 7 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -22,7 +22,7 @@ DATA := data
|
||||||
INCLUDES := include lib/zipper/include /lib/borealis/library/include/borealis/extern/nlohmann
|
INCLUDES := include lib/zipper/include /lib/borealis/library/include/borealis/extern/nlohmann
|
||||||
APP_TITLE := All-in-One Switch Updater
|
APP_TITLE := All-in-One Switch Updater
|
||||||
APP_AUTHOR := HamletDuFromage
|
APP_AUTHOR := HamletDuFromage
|
||||||
APP_VERSION := 2.17.0
|
APP_VERSION := 2.17.1
|
||||||
TARGET := $(notdir $(CURDIR))
|
TARGET := $(notdir $(CURDIR))
|
||||||
|
|
||||||
ROMFS := resources
|
ROMFS := resources
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
"bootloaders_text": "\u25c6 Download and update bootloaders.",
|
"bootloaders_text": "\u25c6 Download and update bootloaders.",
|
||||||
"cheats": "cheats",
|
"cheats": "cheats",
|
||||||
"links_not_found": "Could not find a download link, make sure the Switch has access to the internet.\nIf this problem persists, please open an issue on Github.",
|
"links_not_found": "Could not find a download link, make sure the Switch has access to the internet.\nIf this problem persists, please open an issue on Github.",
|
||||||
"new_update": "- New app update available",
|
"new_update": " - New app update available",
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"update_ams": "Update Atmosphère",
|
"update_ams": "Update Atmosphère",
|
||||||
"update_cfw": "Update CFW",
|
"update_cfw": "Update CFW",
|
||||||
|
|
|
@ -87,7 +87,7 @@
|
||||||
},
|
},
|
||||||
"joy_con": {
|
"joy_con": {
|
||||||
"title": "ジョイコンの色を変更",
|
"title": "ジョイコンの色を変更",
|
||||||
"description": "ジョイコンの内部の色を変更できます。ジョイコンが本体に装着されていることを確認してください。\nカラープロファイルは`{}`に保存されます。'{}'に移動して、独自のカスタムプロファイルを生成します。",
|
"description": "ジョイコンの内部の色を変更できます。ジョイコンが本体に装着されていることを確認してください。\nカラープロファイルは`{}`に保存されます。'{}'に移動して、独自のカスタムプロファイルを生成します。",
|
||||||
"backup": "現在のカラープロファイルをバックアップする",
|
"backup": "現在のカラープロファイルをバックアップする",
|
||||||
"label": "ジョイコンの色を変更",
|
"label": "ジョイコンの色を変更",
|
||||||
"backing_up": "現在のカラープロファイルをバックアップします。 ジョイコンがドッキングされていることを確認してください。プロセスがハングする場合は、ジョイコンをドッキング/ドッキング解除してみてください",
|
"backing_up": "現在のカラープロファイルをバックアップします。 ジョイコンがドッキングされていることを確認してください。プロセスがハングする場合は、ジョイコンをドッキング/ドッキング解除してみてください",
|
||||||
|
@ -220,4 +220,4 @@
|
||||||
"zh-Hant": "Traditional Chinese (zh-Hant)",
|
"zh-Hant": "Traditional Chinese (zh-Hant)",
|
||||||
"zh-Hans": "Simplified Chinese (zh-Hans)"
|
"zh-Hans": "Simplified Chinese (zh-Hans)"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -226,6 +226,9 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true)
|
||||||
verTitles.push_back("v2.17.0");
|
verTitles.push_back("v2.17.0");
|
||||||
changes.push_back("\uE016 Add ability to download a basic hekate_ipl file.\n\uE016 Add error messages when cheats are not found for a game.");
|
changes.push_back("\uE016 Add ability to download a basic hekate_ipl file.\n\uE016 Add error messages when cheats are not found for a game.");
|
||||||
|
|
||||||
|
verTitles.push_back("v2.17.1");
|
||||||
|
changes.push_back("\uE016 Add disclaimer when cheat codes are found for a different game version.\n\uE016 Improve French and Japanese localization.");
|
||||||
|
|
||||||
for (int i = verTitles.size() - 1; i >= 0; i--) {
|
for (int i = verTitles.size() - 1; i >= 0; i--) {
|
||||||
listItem = new brls::ListItem(verTitles[i]);
|
listItem = new brls::ListItem(verTitles[i]);
|
||||||
change = changes[i];
|
change = changes[i];
|
||||||
|
|
Loading…
Reference in a new issue