d00c320c00
This uses more arguments in the GET request for mod versions on the Modrinth API, filtering what versions can be returned, decreasing load on Modrinth servers and improving a little the time it takes for the versions to be available to the user. This also removes the now unneeded check on correct modloaders in ModrinthPackIndex, since it is now filtered by the Modrinth server. Lastly, this adds a couple of helper functions in ModModel.
14 lines
424 B
C++
14 lines
424 B
C++
#pragma once
|
|
|
|
#include "modplatform/ModAPI.h"
|
|
|
|
class NetworkModAPI : public ModAPI {
|
|
public:
|
|
void searchMods(CallerType* caller, SearchArgs&& args) const override;
|
|
void getVersions(CallerType* caller, VersionSearchArgs&& args) const override;
|
|
|
|
protected:
|
|
virtual auto getModSearchURL(SearchArgs& args) const -> QString = 0;
|
|
virtual auto getVersionsURL(VersionSearchArgs& args) const -> QString = 0;
|
|
};
|