From a015fd3161e5c7ff33dabf7aaa363919c0725316 Mon Sep 17 00:00:00 2001 From: flb Date: Sat, 26 Mar 2022 14:25:50 +0100 Subject: [PATCH] bump version --- Makefile | 2 +- resources/i18n/en-US/menus.json | 2 +- resources/i18n/ja/menus.json | 4 ++-- source/changelog_page.cpp | 3 +++ 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index db9f8c8..9b4ce8e 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ DATA := data INCLUDES := include lib/zipper/include /lib/borealis/library/include/borealis/extern/nlohmann APP_TITLE := All-in-One Switch Updater APP_AUTHOR := HamletDuFromage -APP_VERSION := 2.17.0 +APP_VERSION := 2.17.1 TARGET := $(notdir $(CURDIR)) ROMFS := resources diff --git a/resources/i18n/en-US/menus.json b/resources/i18n/en-US/menus.json index 32396d4..59a24cb 100644 --- a/resources/i18n/en-US/menus.json +++ b/resources/i18n/en-US/menus.json @@ -122,7 +122,7 @@ "bootloaders_text": "\u25c6 Download and update bootloaders.", "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.", - "new_update": "- New app update available", + "new_update": " - New app update available", "about": "About", "update_ams": "Update Atmosphère", "update_cfw": "Update CFW", diff --git a/resources/i18n/ja/menus.json b/resources/i18n/ja/menus.json index 53a5d1b..d897e5b 100644 --- a/resources/i18n/ja/menus.json +++ b/resources/i18n/ja/menus.json @@ -87,7 +87,7 @@ }, "joy_con": { "title": "ジョイコンの色を変更", - "description": "ジョイコンの内部の色を変更できます。ジョイコンが本体に装着されていることを確認してください。\nカラープロファイルは`{}`に保存されます。'{}'に移動して、独自のカスタムプロファイルを生成します。", + "description": "ジョイコンの内部の色を変更できます。ジョイコンが本体に装着されていることを確認してください。\nカラープロファイルは`{}`に保存されます。'{}'に移動して、独自のカスタムプロファイルを生成します。", "backup": "現在のカラープロファイルをバックアップする", "label": "ジョイコンの色を変更", "backing_up": "現在のカラープロファイルをバックアップします。 ジョイコンがドッキングされていることを確認してください。プロセスがハングする場合は、ジョイコンをドッキング/ドッキング解除してみてください", @@ -220,4 +220,4 @@ "zh-Hant": "Traditional Chinese (zh-Hant)", "zh-Hans": "Simplified Chinese (zh-Hans)" } -} +} \ No newline at end of file diff --git a/source/changelog_page.cpp b/source/changelog_page.cpp index f5f7b16..d2f30fe 100644 --- a/source/changelog_page.cpp +++ b/source/changelog_page.cpp @@ -226,6 +226,9 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true) 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."); + 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--) { listItem = new brls::ListItem(verTitles[i]); change = changes[i];