Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add changes from v3.9.2 #1153

Merged
merged 5 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
* Add hashtag symbol to CommonFilter::Any (#1131)
* Disable forward compat on android (c9e97af)

## v3.9.2
* Fix searching for mods returning unavailable mods (#1149)

## v3.9.1
* Fix mod downloads not checking version (f575187)

## v3.9.0
* Many changes to the settings ui (#1108)
* Fuzzy search is now more reasonable
Expand Down
7 changes: 3 additions & 4 deletions loader/src/server/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -554,12 +554,11 @@ ServerRequest<ServerModsList> server::getMods(ModsQuery const& query, bool useCa
// Add search params
if (query.query) {
req.param("query", *query.query);
} else {
// Target current GD version and Loader version when query is not set
req.param("gd", GEODE_GD_VERSION_STR);
req.param("geode", Loader::get()->getVersion().toNonVString());
}

req.param("gd", GEODE_GD_VERSION_STR);
req.param("geode", Loader::get()->getVersion().toNonVString());

if (query.platforms.size()) {
std::string plats = "";
bool first = true;
Expand Down
3 changes: 3 additions & 0 deletions loader/src/ui/mods/popups/ModPopup.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#include "ModPopup.hpp"

#include <optional>

#include <Geode/binding/ButtonSprite.hpp>
#include <Geode/ui/MDTextArea.hpp>
#include <Geode/ui/TextInput.hpp>
Expand Down