Skip to content

Commit

Permalink
Version bump: 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
piegamesde committed Oct 26, 2021
1 parent 77aedf5 commit 3598180
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
Expand Up @@ -6,7 +6,7 @@ public class VersionProvider implements IVersionProvider {

/* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */
// $REPLACE_START
public static final String VERSION = "2.2.1";
public static final String VERSION = "2.3.0";
// $REPLACE_END

@Override
Expand Down
Expand Up @@ -3,6 +3,6 @@
public class VersionProvider {
/* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */
// $REPLACE_START
public static final String VERSION = "2.2.1";
public static final String VERSION = "2.3.0";
// $REPLACE_END
}
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -50,7 +50,7 @@ BlockMap hasn't been packaged for other distros yet (looking for maintainers).

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

java -jar BlockMap-gui-2.2.1.jar
java -jar BlockMap-gui-2.3.0.jar

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

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

# For general usage help
java -jar BlockMap-cli-2.2.1.jar help
java -jar BlockMap-cli-2.3.0.jar help
# For help about rendering worlds to a folder
java -jar BlockMap-cli-2.2.1.jar help render
java -jar BlockMap-cli-2.3.0.jar help render

will get you started. On Linux even with colors!

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -24,7 +24,7 @@ buildscript {
apply plugin: "com.github.ben-manes.versions"

allprojects {
version = '2.2.1'
version = '2.3.0'

repositories {
jcenter()
Expand Down
17 changes: 17 additions & 0 deletions changelog.md
@@ -1,5 +1,22 @@
# Changelog

## Version 2.3.0

### Changes

- Minecraft 1.17 support
- GUI rendering engine improvements
- The way downscaled images are handled got changed. The resulting code is a lot simpler,
which results in less bugs and memory consumption.
- The difference is especially noticable in worlds with empty region files/chunks. This
occurs when using the `/locate` command, or when interacting with cartographers in game.
- Added pin for Lodestones

### Bug fixes

- Some random `NullPointerException`s
- Java >=16 support

## Version 2.2.1

### Changes
Expand Down

0 comments on commit 3598180

Please sign in to comment.