-
Notifications
You must be signed in to change notification settings - Fork 49
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
Sort by game version when game version checking is disabled #371
Comments
What version is there in your profile? |
|
Ah then the issue is that your profile has This should be resolved by allowing versions without breaking changes to also be considered compatible which should be possible with filters (#155) |
Well you solved half of the issue. This issue lists 2 problems
Problem 2 is still unresolved. |
Ferium add doesn't work if the version number of any available build doesn't match the profile game version. It doesn't just check the latest version but checks every version available to find one marked with the same game version as your profile.
This is only if you have disabled the game version check by using |
I think this should also be the case if I disable game version checking. If I disable game version checking, I expect it to download the latest build that is for the latest version of Minecraft (with the modloader of my profile, of course) I only see "disable game version checking" as an option to bypass |
Description
When using the command:
It shows: "The project is not compatible", even though it clearly has a 1.20 version on the mod download page. When using
--dont-check-game-version
, it downloadssmoothswapping-0.9.2-1.19.2-fabric.jar
, even though the mod has a 1.20 version which has file namesmoothswapping-0.9.2-1.20-fabric.jar
Steps to reproduce
ferium add smooth-swapping --dont-check-game-version
ferium upgrade
1.19.2
version of the modOperating System
Linux
Are you using the latest version of ferium?
Additional Information
I think that this is occuring because, if you go to the versions page of the mod, the latest-uploaded build of the mod is for 1.19.2, slightly below which is the 1.20 version (the mod version is the same for both).
This can be solved by checking if there is a build of the mod that is for the latest version of minecraft instead of just saying "not compatible" if the latest-uploaded build is for an older version.
Essentially, retrieve the MOD VERSION for the latest build of a mod, and then recursively loop through all builds with that MOD VERSION, and select the one that is for the minecraft version of the ferium profile
The text was updated successfully, but these errors were encountered: