From 74a9d89030681cb86cbc6a50aa0ee68515baa940 Mon Sep 17 00:00:00 2001 From: flb Date: Sun, 1 May 2022 22:41:30 +0200 Subject: [PATCH] bump version --- Makefile | 2 +- source/changelog_page.cpp | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b4ce8e..447a2cf 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.1 +APP_VERSION := 2.18.0 TARGET := $(notdir $(CURDIR)) ROMFS := resources diff --git a/source/changelog_page.cpp b/source/changelog_page.cpp index f8b0bed..6eda2df 100644 --- a/source/changelog_page.cpp +++ b/source/changelog_page.cpp @@ -231,6 +231,10 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true) 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."); + verTitles.push_back("v2.18.0"); + changes.push_back("\uE016 Add mega.nz support (https://github.com/aedalzotto).\n\uE016 Add Korean localization (https://github.com/DDinghoya).\n\uE016 Improve Spanish localization (https://github.com/Armi-Heavy)."); + + for (int i = verTitles.size() - 1; i >= 0; i--) { listItem = new brls::ListItem(verTitles[i]); change = changes[i];