Skip to content

Commit

Permalink
Version bump: 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
piegamesde committed Feb 20, 2022
1 parent 6bf580f commit 19af32a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
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.4.0";
public static final String VERSION = "2.4.1";
// $REPLACE_END

@Override
Expand Down
Original file line number Diff line number Diff line change
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.4.0";
public static final String VERSION = "2.4.1";
// $REPLACE_END
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
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.4.0.jar
java -jar BlockMap-gui-2.4.1.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.4.0.jar help
java -jar BlockMap-cli-2.4.1.jar help
# For help about rendering worlds to a folder
java -jar BlockMap-cli-2.4.0.jar help render
java -jar BlockMap-cli-2.4.1.jar help render

will get you started. On Linux even with colors!

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ buildscript {
apply plugin: "com.github.ben-manes.versions"

allprojects {
version = '2.4.0'
version = '2.4.1'

repositories {
jcenter()
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Version 2.4.1

### Bug fixes

- Fixed broken "open world" dialog #75
- Fixed an exception while rendering old chunks introduced by the negative y coordinates in 1.18

## Version 2.4.0

### Changes
Expand Down

0 comments on commit 19af32a

Please sign in to comment.