Tags
Creators
Details
3.6.4+A-26.1.2
Compatibility
Required content
Changes
[3.6.4+A-26.1.2]
Summary
The "ConfigHelper Migration" update. Refactors configuration loading and saving to use the standard centralized API in DasikLibrary.
- Config Migration: Refactored
BetterDogsConfigto delegate all deserialization, serialization, backup, size limit checking, and atomic swap writes to the library's centralizedConfigHelperclass. - Runtime Dependency Guard: Added a runtime version verification at startup. If
DasikLibraryversion is less than1.7.4(orConfigHelperis missing), the game aborts and throws a MinecraftReportedExceptionwrapping a descriptiveCrashReport:"Better Dogs: DasikLibrary version mismatch! Requires version 1.7.4 or higher. Please update your mods." - ⚠️ WARNING: This version requires the newest
DasikLibrary 1.7.4or higher. Older library versions will cause startup crashes.
[3.6.3+A-26.1.2]
Summary
The "DasikLibrary GameRule Helper Migration" update. Refactors Better Dogs' GameRule queries to call the standard helpers in DasikLibrary directly.
- Direct Library Integration: Completely removed local duplicate GameRule value conversion helper methods (
getPct,getProb,getChance,getDecileFloat,getInt,getBoolean) fromBetterDogsGameRules.java. - Mod-Wide Refactoring: Cleanly refactored all 21 source and mixin classes to query game rules directly via
DynamicGameRuleManager. - ⚠️ WARNING: This version requires the newest
DasikLibrary 1.7.3or higher. Older library versions will cause crash-on-startup due to missing GameRule helper APIs.
Optional dependencies
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:e7H8SUmG:SNdl9IXp"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:e7H8SUmG:SNdl9IXp"
}

