1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-16 20:13:35 +01:00

bump version

This commit is contained in:
flb 2021-09-28 15:27:23 +02:00
parent ee181c011d
commit 4304dff045
3 changed files with 8 additions and 5 deletions

View file

@ -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

View file

@ -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];

View file

@ -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);