All versions
1.3.8+26.1
Release
DayTime Counter 1.3.8+26.12 weeks ago 3
Compatibility
Minecraft: Java Edition
26.1.x
Platform
Fabric
Supported environments
Client-side
Changes
1.3.8+26.1
Added
- New automatic World Journal milestones:
- Every death (not just the first), with the very first one still called out specially
- Every raid you defend or lose
- Every villager trade, with what you received
- Every advancement you complete
- Milestone sound settings: turn the notable-day sound off, or pick which sound plays, from the Mod Menu settings screen
- New public API (
dev.notesow.vanilladaytimecounter.api.v1) for other Fabric mods:getDeathCount()/getDeathCount(long day)getRaidCount()/getRaidCount(long day)getTradeCount()/getTradeCount(long day)andgetTrades()/getTrades(long day)for what was receivedgetAdvancementCount()/getAdvancementCount(long day)andgetCompletedAdvancements()/getCompletedAdvancements(long day)for which ones- Each counter comes both as a world/server total and scoped to a single in-game day
- Two new DTOs,
TradeRecordandAdvancementRecord, alongside the existingJournalEntry
See "For developers" on this page for the full reference (method signatures, DTO fields, namespacing rules, threading notes).
Fixed
- Minecraft 26.1 compatibility: the mod is now published as two separate jars, one per
Minecraft version, each declaring the Fabric Loader version it actually needs ā
0.19.2+for 26.1,0.19.3+for 26.2. Previously the 26.1 jar incorrectly required Loader0.19.3+, which isn't available on 26.1, so the mod failed to load with an "incompatible mods" error. Make sure to download the jar matching your Minecraft 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:DinbWefJ:ull2CHvM"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:DinbWefJ:ull2CHvM"
}

