From 3b86c95d1b6df030ce0622230668d1ef127b5b58 Mon Sep 17 00:00:00 2001 From: Cvolton Date: Mon, 19 Aug 2024 12:48:55 +0200 Subject: [PATCH] temp disable notification clear call; bump version to 4.2.8 --- changelog.md | 4 ++++ mod.json | 2 +- src/utils.cpp | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 0be0458..1a68470 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,8 @@ # Changelog +## v4.2.8 (2024-08-19) +* Fixed a crash caused by the user recklessly deleting resources +* Fixed a visual glitch where unfavorited lists appear in favorited lists tab + ## v4.2.7 (2024-08-08) * Fixed a crash when Last Page Search reaches infinite pages * Fixed a rare startup crash caused by Level Lists diff --git a/mod.json b/mod.json index 3aff00d..166b14e 100644 --- a/mod.json +++ b/mod.json @@ -1,6 +1,6 @@ { "geode": "3.4.0", - "version": "v4.2.7", + "version": "v4.2.8", "gd": { "win": "2.206", "android": "2.206", diff --git a/src/utils.cpp b/src/utils.cpp index 694adbf..4ada6d4 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -907,7 +907,7 @@ void BetterInfo::showUnimportantNotification(const std::string& content, Notific void BetterInfo::cancelUnimportantNotifications() { for(auto& notification : s_notifications) { - notification->cancel(); + //notification->cancel(); } s_notifications.clear(); } \ No newline at end of file