4
10
Fork
You've already forked IPN
5
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%
Find a file
2026年06月29日 16:30:37 +03:00
.github/ISSUE_TEMPLATE
assets-source Added per slot toggle of Auto Refill. 2024年08月02日 23:59:53 +03:00
description Releasing v2.2.3 2025年12月30日 12:45:06 +02:00
gradle ported neoforge to 26.2 2026年06月22日 11:21:54 +03:00
platforms fix dependencies 2026年06月29日 16:30:37 +03:00
.gitignore
.gitmodules
build.gradle.kts
changelog.md
do-local-release.sh
gradle.properties fix dependencies 2026年06月29日 16:30:37 +03:00
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 :)