Take control over you inventory. Sort. Move matching/all Items. Throw all/all items. Locked slots. Gear sets! And much more!
https://inventory-profiles-next.github.io/
- Kotlin 73.1%
- Java 26%
- ANTLR 0.4%
- Shell 0.3%
- Python 0.2%
| .github/ISSUE_TEMPLATE | ||
| assets-source | Added per slot toggle of Auto Refill. | |
| description | Releasing v2.2.3 | |
| gradle | ported neoforge to 26.2 | |
| platforms | fix dependencies | |
| .gitignore | ||
| .gitmodules | ||
| build.gradle.kts | ||
| changelog.md | ||
| do-local-release.sh | ||
| gradle.properties | fix dependencies | |
| gradlew | ||
| gradlew.bat | ||
| Inventory_Profiles_CodeStyle.xml | ||
| IPN_CodeStyle.xml | ||
| LICENSE | ||
| optimize-jar.sh | ||
| proguard.txt | ||
| README.md | ||
| settings.gradle.kts | ||
Inventory Profiles Next
Requirement: Minecraft 1.16.5 - 1.21, Fabric Loader 0.11.6, Forge 36.1.32
Mod download
Modrinth: https://modrinth.com/mod/inventory-profiles-next
CurseForge: https://www.curseforge.com/minecraft/mc-mods/inventory-profiles-next
Other MODs integration
gradle:
Gradle examples are in kotlin DSL. Although currently there is no difference between fabric and forge APIs this is not a guarantee, we advise you to add dependency on the proper loader version.
Repository
repositories {
maven {
name = "IPN-Releases"
mavenContent {
releasesOnly()
}
content {
includeGroup("org.anti_ad.mc")
includeGroup("ca.solo-studios")
}
url = uri("https://maven.ipn-mod.org/releases")
}
}
Fabric
dependencies {
compileOnly(group = "org.anti-ad.mc",
name = "InventoryProfilesNext-fabric-1.21",
version = "2.0.1")
// for libIPN usually you don't need it
compileOnly(group = "org.anti-ad.mc",
name = "libIPN-fabric-1.21",
version = "5.0.1",
classifier = "dev")
}
Forge
dependencies {
compileOnly(group = "org.anti-ad.mc",
name = "InventoryProfilesNext-forge-1.21",
version = "2.0.1")
// for libIPN usually you don't need it
compileOnly(group = "org.anti-ad.mc",
name = "libIPN-forge-1.21",
version = "5.0.1",
classifier = "dev")
}
Maven
Who uses maven still :D
TODO
- learn Kotlin
- learn about Minecraft modding :)