Compare commits

..

2 commits

Author SHA1 Message Date
Fleeym
948e0d453d chore: version bump
Some checks failed
Build Binaries / Build Windows (push) Has been cancelled
Build Binaries / Build macOS (push) Has been cancelled
Build Binaries / Build Android (64-bit) (push) Has been cancelled
Build Binaries / Build Android (32-bit) (push) Has been cancelled
Check CHANGELOG.md / Check CHANGELOG.md (push) Has been cancelled
Build Binaries / Publish (push) Has been cancelled
2024-11-15 00:01:58 +02:00
Fleeym
9151c73374
fix(index): don't remove gd and geode params (#1152) 2024-11-14 23:56:20 +02:00
3 changed files with 7 additions and 5 deletions

View file

@ -1,5 +1,8 @@
# Geode Changelog
## v3.9.2
* Fix searching for mods returning unavailable mods (#1149)
## v3.9.1
* Fix mod downloads not checking version (f575187)

View file

@ -1 +1 @@
3.9.1
3.9.2

View file

@ -570,11 +570,10 @@ 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());
}
if (query.platforms.size()) {
std::string plats = "";