Skip to content

Commit

Permalink
bump version to 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Dec 9, 2024
1 parent bb32e59 commit 6618c76
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
8 changes: 4 additions & 4 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Changelog
## <cg>v4.3.0</c> (2024-11-00)
## <cg>v4.3.0</c> (2024-12-09)
* <cg>Added</c> <cl>Featured Lite</c> (Weekly Levels) to <co>BI menu</c>
* <cg>Added</c> <cl>more info</c> for <co>sent friend requests and messages</c>
* <cg>Added</c> <co>integration</c> with <co>Eclipse Menu</c> and <co>QOLmod</c>
* <cg>Added</c> <co>estimated game version</c> to <co>Extended Level Info</c>
* <cg>Added</c> <cl>integration</c> with <co>Eclipse Menu</c> and <co>QOLmod</c>
* <cg>Added</c> <cl>estimated game version</c> to <co>Extended Level Info</c>
* <cg>Added</c> <cl>more info</c> for <co>sent friend requests</c> and <co>messages</c>
* <cg>Disabled</c> <cj>auto submit to leaderboards</c> for <co>classic levels</c> on <cp>mobile devices</c>
* This is because Rob's anti-cheat marks all level completions from mobile as cheated, which means you can't appear in top 100 if you submit a score like this
* <cg>Made</c> <cl>player icons</c> in <co>chest history</c> clickable
Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"geode": "4.0.1",
"version": "v4.3.0-beta.4",
"version": "v4.3.0",
"gd": {
"win": "2.2074",
"android": "2.2074",
Expand Down
15 changes: 8 additions & 7 deletions src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -802,18 +802,19 @@ FLAlertLayer* BetterInfo::createUpdateDialog() {
)
);
//if(versionResult.isOk() && versionResult->getMinor() == Mod::get()->getVersion().getMinor()) return nullptr;
if(versionResult.isOk() && ComparableVersionInfo::parse(">=4.2.0").unwrap().compare(versionResult.unwrap())) return nullptr;
if(versionResult.isOk() && ComparableVersionInfo::parse(">=4.3.0").unwrap().compare(versionResult.unwrap())) return nullptr;

return createQuickPopup(
"BetterInfo",
"<cg>BetterInfo has updated!</c>\n"
"\n"
"<cy>Changelog:</c> <cg>v4.2.0</c> (2024-07-07)\n"
"- <cg>Added</c> <cl>list folders</c>\n"
"- <cg>Added</c> <cl>notification</c> when you can claim a <co>rated list reward</c>\n"
"- <cg>Added</c> <cl>followed user list</c> to <co>friends menu</c>\n"
"- <cg>Added</c> <cl>Coin Count</c> and <cl>Folder</c> filters to <cj>Filtered Search</c>\n"
"- <cg>Added</c> more <cl>Level Progress</c> information to <co>Editor levels</c>\n"
"<cy>Changelog:</c> <cg>v4.3.0</c> (2024-12-09)\n"
"- <cg>Added</c> <cl>Featured Lite</c> (Weekly Levels) to <co>BI menu</c>\n"
"- <cg>Added</c> <cl>integration</c> with <co>Eclipse Menu</c> and <co>QOLmod</c>\n"
"- <cg>Added</c> <cl>estimated game version</c> to <co>Extended Level Info</c>\n"
"- <cg>Added</c> <cl>more info</c> for <co>sent friend requests</c> and <co>messages</c>\n"
"- <cg>Disabled</c> <cj>auto submit</c> for <co>classic levels</c> on <cp>mobile devices</c>\n"
"- <cg>Made</c> <cl>Extended Level Info</c> details copyable\n"
"- <cr>More!</c> Click \"<cy>More Info</c>\" for the <co>whole list</c>!\n"
"\n",
"More Info",
Expand Down

0 comments on commit 6618c76

Please sign in to comment.