mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
bump version
This commit is contained in:
parent
ee181c011d
commit
4304dff045
3 changed files with 8 additions and 5 deletions
2
Makefile
2
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
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue