You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
without semver mods uploaded to mods registry will 99% of time crash with each other and it'll be a waste of time and effort to not do this automatically
What is semantic version?
tl;dr: a versioning scheme like
Major.Minor.Patch
e.g1.0.0
that's used virtually everywhereWhy do we need it?
One word: better UX.
It's required to check whether mods are compatible when creating a mod registry (think of steam workshop, nexus mods but for BN mods).
e.g after semver is stabilized, we could show players that this mod would only work on
magical_nights
equal to or newer than1.7.0
.we could borrow syntax for version range from other popular solutions (https://semver.npmjs.com/, https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#version-requirement-syntax)
without semver mods uploaded to mods registry will 99% of time crash with each other and it'll be a waste of time and effort to not do this automatically
Additional context
https://discord.com/channels/830879262763909202/1222011030079672330
The text was updated successfully, but these errors were encountered: