Skip to content

Commit

Permalink
fix mac issues
Browse files Browse the repository at this point in the history
  • Loading branch information
FireMario211 committed Nov 6, 2023
1 parent 0996249 commit b55bcf7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ A Geometry Dash Mod for adding more tools such as Notifications, auto-song mute,
* **IMPORTANT for Mac Users:** Geometry Dash may request access to "System Events" and another app for muting Spotify or another application. This allows the game to detect running applications.
### Extra additions to Friends List
* The additions added include being able to **search usernames** if you have a long friend list, or using the **scroll buttons**!
### More Leaderboards
* Thanks to Updated Leaderboards, it's now possible for you to view leaderboards for users with the most **Diamonds**, **User Coins**, and **Demons!**
### Moderator List
* You can view the list of **Elder Moderators**/**Moderators** and their socials!
### View Demon List Placement
* Instead of having to go to Pointercrate to view the demon placement of a level, you can now **view the position** of an extreme demon!

## Libraries Used
- [Geode](https://github.com/geode-sdk/geode)
Expand Down
1 change: 1 addition & 0 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ A Geometry Dash Mod for adding more tools such as Notifications, auto-song mute,
* [Jouca](https://twitter.com/JoucaJouca)
* [Firee](https://youtube.com/@gdfiree)
* [Maverick](https://www.youtube.com/channel/UCoFBsXJ-6o6l6ZYP-k6DE_g)

**Thank you to RobTopGames for his trust on the mod.**
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ class $modify(CustomLevelInfo, LevelInfoLayer) {
log::info("Sending a request to pointercrate...");
web::AsyncWebRequest()
.join("pointercrate-level")
.fetch(fmt::format("https://pointercrate.com/api/v2/demons/listed/?name={}", level->m_levelName))
.fetch(fmt::format("https://pointercrate.com/api/v2/demons/listed/?name={}", level->m_levelName.c_str()))
.json()
.then([this, level, levelID, loading_circle, positionLabel, demonSpr, winSize](json::Value const& json) {
loading_circle->fadeAndRemove();
Expand All @@ -943,7 +943,7 @@ class $modify(CustomLevelInfo, LevelInfoLayer) {
positionLabel->setVisible(true);
demonSpr->setVisible(true);
set(levelID, position);
log::info(fmt::format("Level found in Pointercrate! {} at #{}", level->m_levelName, position));
log::info(fmt::format("Level found in Pointercrate! {} at #{}", level->m_levelName.c_str(), position));
}
})
.expect([this, loading_circle](std::string const& error) {
Expand Down

0 comments on commit b55bcf7

Please sign in to comment.