1
1
Fork
You've already forked libIPN
0
No description
  • Kotlin 87.4%
  • Java 11.7%
  • Shell 0.6%
  • Python 0.3%
Find a file
2026年06月29日 14:36:23 +03:00
description fix release notes 2022年11月09日 10:40:23 +02:00
gradle drop kotlin for forge for neoforge too. libIPN now carries the kotlin jars. 2026年06月23日 16:26:29 +03:00
libIPN Releasing v6.8.2 2026年06月29日 14:36:23 +03:00
.gitignore missed some files 2025年08月29日 00:04:58 +03:00
build.gradle.kts Releasing v6.8.2 2026年06月29日 14:36:23 +03:00
changelog.md Releasing v6.8.2 2026年06月29日 14:36:23 +03:00
do-libIPN-release.sh Missed some files 2026年03月17日 15:27:29 +02:00
gradle.properties port to 26.2. 2026年06月20日 09:32:49 +03:00
gradlew Initial Commit 2022年09月21日 20:12:16 +03:00
gradlew.bat Initial Commit 2022年09月21日 20:12:16 +03:00
LICENSE Initial Commit 2022年09月21日 20:12:16 +03:00
optimize-jar.sh Fixed the release. v5.0.2 2024年07月02日 15:50:11 +03:00
prepare-release.sh releasing 2.0.2 2023年01月29日 11:40:01 +02:00
proguard.txt adds support for localized keybind names 2022年09月30日 17:29:29 +03:00
README.md Initial Commit 2022年09月21日 20:12:16 +03:00
settings.gradle.kts drop kotlin for forge for neoforge too. libIPN now carries the kotlin jars. 2026年06月23日 16:26:29 +03:00

Inventory Profiles Next

Requirement: Minecraft 1.16.5 - 1.17, 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

The artefacts are available on Maven Central. The Javadoc is available here Javadoc. If your screen is not an inventory use @IPNIgnore annotation. If your screen is inventory but IPN buttons are not aligned properly look at @IPNGuiHint.

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.

Fabric

dependencies {
 compileOnly(group = "org.anti-ad.mc",
 name = "inventory-profiles-next",
 version = "fabric-1.17.1-1.1.0")
}

Forge

dependencies {
 compileOnly(group = "org.anti-ad.mc",
 name = "inventory-profiles-next",
 version = "forge-1.17.1-1.1.0")
}

Maven

Fabric

<dependency>
 <groupId>org.anti-ad.mc</groupId>
 <artifactId>inventory-profiles-next</artifactId>
 <version>fabric-1.17.1-1.1.0</version>
</dependency>

Forge

<dependency>
 <groupId>org.anti-ad.mc</groupId>
 <artifactId>inventory-profiles-next</artifactId>
 <version>forge-1.17.1-1.1.0</version>
</dependency>

TODO

  • learn Kotlin
  • learn about Minecraft modding :)