Skip to content

Commit e86f704

Browse files
committed
Version bump: 2.1.0
1 parent babc528 commit e86f704

5 files changed

Lines changed: 29 additions & 13 deletions

File tree

BlockMap-cli/src/main/java/de/piegames/blockmap/standalone/VersionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class VersionProvider implements IVersionProvider {
66

77
/* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */
88
// $REPLACE_START
9-
public static final String VERSION = "2.0.0";
9+
public static final String VERSION = "2.1.0";
1010
// $REPLACE_END
1111

1212
@Override

BlockMap-gui/src/main/java/de/piegames/blockmap/gui/VersionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
public class VersionProvider {
44
/* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */
55
// $REPLACE_START
6-
public static final String VERSION = "2.0.0";
6+
public static final String VERSION = "2.1.0";
77
// $REPLACE_END
88
}

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
# BlockMap – A Minecraft 1.13-1.15 world viewer
1+
# BlockMap – A Minecraft 1.16 world viewer
22

33
[![Build Status](https://github.com/Minecraft-Technik-Wiki/BlockMap/workflows/Build/badge.svg)](https://github.com/Minecraft-Technik-Wiki/BlockMap/actions)
44

55
<img src="icon/blockmap-256.png" width=150/>
66

7-
*This started as fork of [TMCMR](https://github.com/TOGoS/TMCMR), but has been almost completely rewritten due to the update. If you want something stable that works with 1.12 and before worlds, go check it out.*
8-
97
## Features:
8+
9+
- Beautiful, realistic renders
1010
- Really fast (>700 chunks/s on my system)
1111
- Works with huge worlds
1212
- Works on servers
1313
- Rendering scale: 1 pixel : 1 block
1414
- An interactive GUI viewer made with JavaFX
15-
- Pins on the map show additional information like players and villages
15+
- Pins on the map show points of interest like players, generated structures and villages
1616
- Different color maps and shaders that highlight exactly what you are looking for (including an underground caves and an ocean ground view)
1717
- A command line interface to render your worlds from scripts
1818
- The core rendering code as library to use in your own projects (releasing soon™)
19-
- Gamma corrected rendering
20-
- Works with 1.13+ worlds (currently: up to 1.15. Rudimentary 1.16 support on the master branch)
19+
- Works with 1.16 worlds (with limited support down to 1.13)
2120

2221
## Gallery
2322

@@ -29,10 +28,11 @@
2928

3029
## Requirements:
3130

32-
- Minecraft 1.13+ worlds. Chunks from before the release (even from 1.13 snapshots) will be ignored. Please optimize your worlds in Minecraft before rendering them
31+
- Minecraft 1.13+ worlds. Chunks from before the release (even from 1.13 snapshots) will be ignored. Please optimize your worlds in Minecraft before rendering them (or use other map viewer, like [TMCMR](https://github.com/TOGoS/TMCMR)).
3332
- Java 12+
3433
- While BlockMap should run on any Java, using the [OpenJDK](https://adoptopenjdk.net/) is recommended.
3534
- If you won't hack on the code itself, the JRE should suffice (in the downloads section, choose JRE over JDK)
35+
- Past experience has shown that Java updates are not as backwards-compatible as they could be. So while any newer Java version **should** work just fine, it has currently only been tested up to Java 14. If you encounter any problems that go away by downgrading Java, please open up an issue.
3636

3737
## Get it / Installation:
3838

@@ -50,7 +50,7 @@ BlockMap hasn't been packaged for other distros yet (looking for maintainers).
5050

5151
The GUI version should just run by (double)clicking it. Otherwise run it through:
5252

53-
java -jar BlockMap-gui-2.0.0.jar
53+
java -jar BlockMap-gui-2.1.0.jar
5454

5555
to start. If you installed BlockMap through a package manager, search for it in your launcher or menu.
5656

@@ -68,9 +68,9 @@ to start. If you installed BlockMap through a package manager, search for it in
6868
If you want to use BlockMap through the command line without,
6969

7070
# For general usage help
71-
java -jar BlockMap-cli-2.0.0.jar help
71+
java -jar BlockMap-cli-2.1.0.jar help
7272
# For help about rendering worlds to a folder
73-
java -jar BlockMap-cli-2.0.0.jar help render
73+
java -jar BlockMap-cli-2.1.0.jar help render
7474

7575
will get you started. On Linux even with colors!
7676

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
apply plugin: "com.github.ben-manes.versions"
2121

2222
allprojects {
23-
version = '2.0.0'
23+
version = '2.1.0'
2424

2525
repositories {
2626
jcenter()

changelog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## Version 2.1.0
4+
### Changes
5+
6+
- Minecraft 1.16 support
7+
- Renderer supports the new save format
8+
- Added all new nether blocks to the color maps
9+
- Added biome colors for the new Nether biomes
10+
- Added new village pins: `bee_nest`, `nether_portal`
11+
- Added new Nether pins: `bastion_remnant`, `nether_fossil`
12+
- Reordered a few of the pins (among other tweaks)
13+
14+
### Bug fixes
15+
16+
- Fixed village pins showing up in the wrong dimension
17+
- Fixed a few minor errors in the color maps
18+
319
## Version 2.0.0
420

521
***breaking*** news for ***breaking*** changes! Long overdue, a rewrite/overhaul of quite a few components. No Minecraft 1.16 support yet.

0 commit comments

Comments
 (0)