Links
Tags
Creators
Details
Licensed CC0-1.0
Published 5 months ago
Updated 3 months ago
All versions
3.5.0
Release
Minimap CE 3.5.03 months ago 674
Compatibility
Minecraft: Java Edition
1.6.4
Platform
Legacy Fabric
Supported environments
Client-side
Changes
3.5.0
Features
- Double-Click Waypoint Placement: Double-click anywhere on the fullscreen map to instantly create a waypoint at that location. Opens the waypoint editor with coordinates pre-filled so you can name it and pick a color.
Bug Fixes
- Removed unreliable biome display: The fullscreen map bottom bar no longer shows biome names, which were frequently inaccurate due to BTW CE's modified world generation conflicting with seed-based biome lookups.
- Fixed cursor coordinate precision: Cursor-to-world coordinate conversion now uses
Math.floor()consistently (matching the map renderer), eliminating off-by-one misalignment at negative coordinates and high zoom levels.
Technical
- Hoisted
IChunkProviderlookup out of inner loop insaveExploredChunks(was re-fetched per chunk). - Moved
GL_TEXTURE_2Dstate toggles outside waypoint render loop (was toggled per-waypoint). - Eliminated redundant
cachedMapSizefield (duplicate ofcacheSize). - Cache invalidation no longer forces array reallocation — reuses existing buffers on pan/zoom.
- Updated
gradle.properties→mod_version = 3.5.0.
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:NJZAFYrT:jNyQ9nsZ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:NJZAFYrT:jNyQ9nsZ"
}

