
version documentation
KittyBoiUwU opened this issue ยท 4 comments
Is there any way you could provide documentation about which parts of the files would need to be modified for minor version updates (1.20.x - 1.20.x)
The version info comes from here: https://fabricmc.net/develop/
There is no way for me to predict what Mojang changes in each version and thus what would need to be modified and updated. If they make no code changes that break my mods, then you don't need to do anything to update, you can keep using the previous mod versions.
... Except if I have set a strict MC version dependency. But I usually don't do that forward for minor versions as I can't know beforehand when something would break. That version dependency for the Fabric versions of the mods is in the fabric.mod.json
file inside the resources
directory. If that ever is the only change needed, then you can just extract that file from the mod jar (with 7-zip or whatever) and modify it and then drag it back in to update it, without actually needing to re-build the mod from source.
The version info comes from here: https://fabricmc.net/develop/
There is no way for me to predict what Mojang changes in each version and thus what would need to be modified and updated. If they make no code changes that break my mods, then you don't need to do anything to update, you can keep using the previous mod versions.
... Except if I have set a strict MC version dependency. But I usually don't do that forward for minor versions as I can't know beforehand when something would break. That version dependency for the Fabric versions of the mods is in the
fabric.mod.json
file inside theresources
directory. If that ever is the only change needed, then you can just extract that file from the mod jar (with 7-zip or whatever) and modify it and then drag it back in to update it, without actually needing to re-build the mod from source.