1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 19:41:49 +00:00

bump version

This commit is contained in:
flb 2021-10-26 15:52:02 +02:00
parent c05488ee19
commit 6d5a2a7966
3 changed files with 12 additions and 9 deletions

View file

@ -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.15.0 APP_VERSION := 2.16.0
TARGET := $(notdir $(CURDIR)) TARGET := $(notdir $(CURDIR))
ROMFS := resources ROMFS := resources

View file

@ -43,7 +43,7 @@
"applet_mode_not_supported": "メモリの制約により、アプレットモードでは、現在プレイしているゲームのチートコードのみをフェッチできます。所有しているゲームのチートコードをダウンロードするには、タイトルリダイレクトを通じてaio-switch-updaterを起動してください。", "applet_mode_not_supported": "メモリの制約により、アプレットモードでは、現在プレイしているゲームのチートコードのみをフェッチできます。所有しているゲームのチートコードをダウンロードするには、タイトルリダイレクトを通じてaio-switch-updaterを起動してください。",
"cheatfile_label": "これがファイルにリストされているチートコードです {}", "cheatfile_label": "これがファイルにリストされているチートコードです {}",
"not_found": "このゲームに適切なチートコードが見つかりませんでした", "not_found": "このゲームに適切なチートコードが見つかりませんでした",
"show_existing": "既存のものを表示" "show_existing": "既存のものを表示",
"delete_cheats": "このゲームのチートを削除する", "delete_cheats": "このゲームのチートを削除する",
"deletion_error": "IDのゲームのチートファイルを削除できませんでした:\n{}" "deletion_error": "IDのゲームのチートファイルを削除できませんでした:\n{}"
}, },

View file

@ -211,6 +211,9 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true)
verTitles.push_back("v2.15.0"); verTitles.push_back("v2.15.0");
changes.push_back("\uE016 Implement cheat codes support for multi-content games.\n\uE016 Move payload downloads to bootloader tab."); changes.push_back("\uE016 Implement cheat codes support for multi-content games.\n\uE016 Move payload downloads to bootloader tab.");
verTitles.push_back("v2.16.0");
changes.push_back("\uE016 Ask user about replacing reboot_payload.bin with hekate with updating hekate.\n\uE016 Added option to deleted orphaned cheats.\n\uE016 UX tweaks.");
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];