Links
Tags
Creators
Details
All versions
neoforge-26.1.2-0.1.1
Release
New Horizons Coins neoforge-26.1.2-0.1.13 months ago 26
Compatibility
Minecraft: Java Edition
26.1.2
Platform
NeoForge
Supported environments
Client and server
Changes
NHCoins — NeoForge Support Update
Added
- Added full NeoForge support alongside Fabric
- Implemented cross-loader compatibility using the multiloader architecture
- Added NeoForge-specific world generation support using biome modifiers
- Added unified GitHub Actions workflow for automated multiloader builds and releases
Changed
- Refactored data generation pipeline to support both Fabric and NeoForge
- Introduced hybrid datagen workflow with automatic resource merging
- Improved project structure for cleaner loader separation and maintenance
- Updated release packaging to include both Fabric and NeoForge jars in a single release
Technical
- Added custom Gradle tasks for datagen merging and cleanup
- Added NeoForge generated resource handling
- Improved CI/CD pipeline efficiency with shared build jobs
- Optimized generated resource management for multiloader development
Notes
This release marks the beginning of official NeoForge support while maintaining full compatibility with the existing Fabric version.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:2kvU5HDO:4uDFKAM8"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:2kvU5HDO:4uDFKAM8"
}

