From 4304dff04525b71836d39d5bc4a343899f33f142 Mon Sep 17 00:00:00 2001 From: flb Date: Tue, 28 Sep 2021 15:27:23 +0200 Subject: [PATCH] bump version --- Makefile | 2 +- source/changelog_page.cpp | 3 +++ source/tools_tab.cpp | 8 ++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a57ecba..c395a82 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.14.0 +APP_VERSION := 2.15.0 TARGET := $(notdir $(CURDIR)) ROMFS := resources diff --git a/source/changelog_page.cpp b/source/changelog_page.cpp index 0e6ffa4..368ada2 100644 --- a/source/changelog_page.cpp +++ b/source/changelog_page.cpp @@ -208,6 +208,9 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true) verTitles.push_back("v2.14.0"); changes.push_back("\uE016 Add option to launch Daybreak after downloading a sysupdate.\n\uE016 Download all links at once to cut down on boot times.\n\uE016 Randomize IPs for lan-play in the internet settings page.\n\uE016 Fix default color scheme for pro-cons."); + 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."); + for (int i = verTitles.size() - 1; i >= 0; i--) { listItem = new brls::ListItem(verTitles[i]); change = changes[i]; diff --git a/source/tools_tab.cpp b/source/tools_tab.cpp index 6a523f2..6765fce 100644 --- a/source/tools_tab.cpp +++ b/source/tools_tab.cpp @@ -8,7 +8,7 @@ #include "changelog_page.hpp" #include "cheats_page.hpp" #include "confirm_page.hpp" -#include "download_payload_page.hpp" +/* #include "download_payload_page.hpp" */ #include "extract.hpp" #include "fs.hpp" #include "hide_tabs_page.hpp" @@ -65,11 +65,11 @@ ToolsTab::ToolsTab(const std::string& tag, const nlohmann::ordered_json& payload }); PCcolor->setHeight(LISTITEM_HEIGHT); - downloadPayload = new brls::ListItem("menus/tools/dl_payloads"_i18n + std::string(BOOTLOADER_PL_PATH)); + /* downloadPayload = new brls::ListItem("menus/tools/dl_payloads"_i18n + std::string(BOOTLOADER_PL_PATH)); downloadPayload->getClickEvent()->subscribe([&, payloads](brls::View* view) { brls::Application::pushView(new DownloadPayloadPage(payloads)); }); - downloadPayload->setHeight(LISTITEM_HEIGHT); + downloadPayload->setHeight(LISTITEM_HEIGHT); */ rebootPayload = new brls::ListItem("menus/tools/inject_payloads"_i18n); rebootPayload->getClickEvent()->subscribe([&](brls::View* view) { @@ -232,7 +232,7 @@ ToolsTab::ToolsTab(const std::string& tag, const nlohmann::ordered_json& payload if (!util::getBoolValue(hideStatus, "cheats")) this->addView(cheats); if (!util::getBoolValue(hideStatus, "jccolor")) this->addView(JCcolor); if (!util::getBoolValue(hideStatus, "pccolor")) this->addView(PCcolor); - if (!util::getBoolValue(hideStatus, "downloadpayload")) this->addView(downloadPayload); + /* if (!util::getBoolValue(hideStatus, "downloadpayload")) this->addView(downloadPayload); */ if (erista && !util::getBoolValue(hideStatus, "rebootpayload")) this->addView(rebootPayload); if (!util::getBoolValue(hideStatus, "netsettings")) this->addView(netSettings); if (!util::getBoolValue(hideStatus, "browser")) this->addView(browser);