Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Tags
Creators
Details
FootLib
FootLib is a lightweight API and utility library used by Footāseries mods. It provides shared systems such as:
Foot Economy API
Currency definitions
Exchangeārate systems
Autoārate engine hooks
Service injection for mod interoperability
FootLib is intentionally minimal, stable, and designed to act as the backbone for the entire Foot ecosystem.
Versioning
FootLib uses a fourāsegment versioning system:
Overhaul.Major.Semiāmajor.Patch/Hotfix/Minorāalpha/beta/release
Example: 0.0.1.0 ā Semiāmajor update (1 in the third position)
Meaning of each segment
-
Overhaul
A complete rewrite of the codebase, API, and systems. This is a new era of FootLib. Backward compatibility is not preserved. -
Major Large feature wave. New systems, new mechanics, or major expansions. Backward compatible unless stated otherwise.
-
Semiāmajor Significant content or system additions. Bigāminor updates that donāt break API.
-
Patch / Hotfix / Minor Small updates, bugfixes, microāfeatures, or emergency fixes.
Preārelease tags
āalpha ā Experimental, unstable
ābeta ā Featureācomplete, stabilizing
(blank) ā Release build/stable
Important Note
An Overhaul (1.x.x.x, 2.x.x.x, etc.) ends support for all previous Foot mods unless explicitly stated otherwise.
This is why FootLib does not use SemVer ā SemVer cannot express the difference between a major update and a full architectural overhaul. FootLibās versioning makes the reason for incompatibility explicit. DON'T WORRY THIS MOD IS STILL GETTING UPDATES AND NEW FEATURES, I ALSO JUST HAPPEN TO HAVE MORE PROJECTS IN MIND SO GETTING THEM COMPLETED IS KEY Usage Maven Repo
repositories {
maven { url = "https://api.modrinth.com/maven" }
}
Gradle (Groovy)
dependencies {
implementation("maven.modrinth:footlib:${footlib_version}")
}
neoforge.mods.toml
[[dependencies.yourmod]]
modId="footlib"
mandatory=true
versionRange="[min_version, maxversion)"
#Put an actual version in min_version and max_version


