diff --git a/Makefile b/Makefile index 25b625c..96c4a6d 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.10.1 +APP_VERSION := 2.10.2 TARGET := $(notdir $(CURDIR)) ROMFS := resources diff --git a/lib/borealis b/lib/borealis index 24d2d5d..909b3ba 160000 --- a/lib/borealis +++ b/lib/borealis @@ -1 +1 @@ -Subproject commit 24d2d5d3062f964948e0f325fb2257a1771ee0c5 +Subproject commit 909b3baef58ca594dfe4ab691d9be14b28c17417 diff --git a/source/app_page.cpp b/source/app_page.cpp index 5fe4e8d..99ccc96 100644 --- a/source/app_page.cpp +++ b/source/app_page.cpp @@ -228,7 +228,7 @@ void AppPage_Exclude::PopulatePage() if R_FAILED(GetControlData(tid, controlData, controlSize, name)) continue; brls::ToggleListItem *listItem; - listItem = new brls::ToggleListItem(util::formatListItemTitle(std::string(name)), titles.find(util::formatApplicationId(tid)) != titles.end() ? 0 : 1); + listItem = new brls::ToggleListItem(std::string(name), titles.find(util::formatApplicationId(tid)) != titles.end() ? 0 : 1); listItem->setThumbnail(controlData->icon, sizeof(controlData->icon)); items.insert(std::make_pair(listItem, util::formatApplicationId(tid))); diff --git a/source/changelog_page.cpp b/source/changelog_page.cpp index f9aca34..45e0a9a 100644 --- a/source/changelog_page.cpp +++ b/source/changelog_page.cpp @@ -178,6 +178,9 @@ ChangelogPage::ChangelogPage() : AppletFrame(true, true) verTitles.push_back("v2.10.1"); changes.push_back("\uE016 Fixed crashes in airplane mode introduced in 2.10.0"); + verTitles.push_back("v2.10.2"); + changes.push_back("\uE016 Borealis changes for visual tweaks (tickering labels, scroll bar etc)."); + for(int i = verTitles.size() -1 ; i >= 0; i--){ listItem = new brls::ListItem(verTitles[i]); change = changes[i]; diff --git a/source/download_cheats_page.cpp b/source/download_cheats_page.cpp index c3ee4f7..68c4f68 100644 --- a/source/download_cheats_page.cpp +++ b/source/download_cheats_page.cpp @@ -255,10 +255,6 @@ std::string DownloadCheatsPage_CheatSlips::GetCheatsTitle(json cheat) { res += "[" + p.get() + "]" + " - "; } } - res.erase(res.length() - 3); - if(res.size() > 80){ - res = res.substr(0, 79) + "\u2026"; - } return res; } diff --git a/source/exclude_page.cpp b/source/exclude_page.cpp index 28ce952..b770bf2 100644 --- a/source/exclude_page.cpp +++ b/source/exclude_page.cpp @@ -60,9 +60,9 @@ ExcludePage::ExcludePage() : AppletFrame(true, true) brls::ToggleListItem *listItem; if(titles.find(util::formatApplicationId(tid)) != titles.end()) - listItem = new brls::ToggleListItem(util::formatListItemTitle(std::string(app->name)), 0); + listItem = new brls::ToggleListItem(std::string(app->name), 0); else - listItem = new brls::ToggleListItem(util::formatListItemTitle(std::string(app->name)), 1); + listItem = new brls::ToggleListItem(std::string(app->name), 1); listItem->setThumbnail(app->icon, sizeof(app->icon)); items.insert(std::make_pair(listItem, util::formatApplicationId(app->tid)));