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