Tags
Creators
Details
Modern-26.1.x-0.8.9-SNAPSHOT
Compatibility
Changes
HomePlugin 0.8.9 is a major corrective release focused on stability, compatibility, and version support.
The previous 0.8.8 release introduced major changes but contained critical issues that could prevent the plugin from working correctly. Version 0.8.9 addresses these problems by restructuring the project and separating version-specific implementations.
๐ ๏ธ Major Changes
๐ง Multi-Version Architecture
The project has been split into 4 modules to properly support different Minecraft versions and their respective APIs.
This new architecture allows HomePlugin to provide compatible dependencies and implementations across the supported Minecraft versions, instead of relying on a single implementation for every version.
๐ Extended Minecraft Compatibility
The new modular structure is designed to support Minecraft versions from 1.14 through 26.2, with version-specific dependencies where required.
This significantly improves compatibility with both older and newer Minecraft servers.
๐ Stability & Bug Fixes
- Fixed critical issues introduced in
0.8.8. - Improved compatibility between different Minecraft API versions.
- Fixed problems caused by incompatible dependencies.
- Improved the reliability of version-specific functionality.
- Refactored the project structure to make future compatibility updates easier.
โ ๏ธ Important
If you are currently running HomePlugin 0.8.8, updating to 0.8.9 is strongly recommended.
The 0.8.8 release contained compatibility and stability issues that could prevent parts of the plugin from working correctly. Version 0.8.9 replaces the previous architecture with a version-aware modular structure.
๐ Full Changelog
๐ค Contributors
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:kbERwJ64:BzLF0pFD"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:kbERwJ64:BzLF0pFD"
}

