Tags
Creators
Details
All versions
5.5-spigot
Release
5.5-spigot2 years ago 2,299
Compatibility
Minecraft: Java Edition
1.21–1.21.4
1.20.x
Platform
Spigot
Changes
Highlights / Notes
2D (flat-only) map support (O.o) ..and a first iteration of support for custom block-renderers. :)
Upgrading from 5.4
- Replace the bluemap.jar-file with the new one
- Delete your
<webroot>/index.htmlto make bluemap update the webapp - Move all contents (if any) of bluemaps
addonsfolder into bluemapspacksfolder and delete theaddonsfolder. (Native addons now go into the packs folder alongside resourcepacks) - In your
webapp.conf:- Remove the
enable-free-flightconfiguration, this config it is no longer used. - Add the following lines:
- Remove the
# Here you can specify an alternative base url from where all map data is loaded.
# Default is "maps"
#map-data-root: "https://cdn.my-domain.com/mapdata"
# Here you can specify an alternative base url from where all live data is loaded.
# Default is "maps"
#live-data-root: "https://cdn.my-domain.com/livedata"
- In each of your map-configs in the
mapsfolder:- Replace
save-hires-layerwithenable-hires(setting has been renamed) - Add the following lines:
- Replace
# Defines the initial sky-light-strength the map will be set to when it is opened.
# 0 is no sky-light, 1 is fully lighted.
# You can change this at any time.
# Default is 1
sky-light: 1
# Whether the perspective view will be enabled for this map.
# Changing this to true requires a re-render of the map, only if the hires-layer is enabled and free-flight view is disabled.
# Default is true
enable-perspective-view: true
# Whether the flat (isometric, top-down) view will be enabled for this map.
# Having only flat-view enabled while disabling free-flight and perspective will speed up the render and reduce the maps storage-size.
# Default is true
enable-flat-view: true
# Whether the free-flight view will be enabled for this map.
# Changing this to true requires a re-render of the map, only if the hires-layer is enabled and perspective view is disabled.
# Default is true
enable-free-flight-view: true
Changelog since 5.4
- Added per-map view-settings and optimized flat-view only maps (2d-map support)
- Added loading of nested feature-datapacks
- Added support for pale_oak_leaves (custom tint-color)
- Added ability to configure the map and live data root url's of the webapp
- Added model for the conduit (thanks to TyBraniff)
- Merged
addonsfolder intopacksfolder (native addons not go intopacksinstead ofaddons) - First iteration of custom block-renderer support
- The webapp now uses the browser-language as default language if available (thanks to NikitaCartes)
- Added
-noption to cli allowing to pass a custom path to load resources from (e.g. a servers mods-folder) (thanks to TechnicJelle) - Fixed/removed the black void/hole that appeared where hires tiles could not be loaded
- Fixed duplicate region render-tasks in the render-queue
Full Changelog
https://github.com/BlueMap-Minecraft/BlueMap/releases/tag/v5.5
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:swbUV1cr:Ap3wfaNh"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:swbUV1cr:Ap3wfaNh"
}

