From 8072854020bb13a50d7f9535733815e5c69df1c7 Mon Sep 17 00:00:00 2001 From: piegames Date: Sat, 29 Feb 2020 23:04:16 +0100 Subject: [PATCH] Version bump --- .../piegames/blockmap/standalone/VersionProvider.java | 2 +- README.md | 11 +++++++---- build.gradle | 2 +- changelog.md | 5 +++++ 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/BlockMap-cli/src/main/java/de/piegames/blockmap/standalone/VersionProvider.java b/BlockMap-cli/src/main/java/de/piegames/blockmap/standalone/VersionProvider.java index 98b49164..4bdf742b 100644 --- a/BlockMap-cli/src/main/java/de/piegames/blockmap/standalone/VersionProvider.java +++ b/BlockMap-cli/src/main/java/de/piegames/blockmap/standalone/VersionProvider.java @@ -8,7 +8,7 @@ public class VersionProvider implements IVersionProvider { public String[] getVersion() throws Exception { /* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */ // $REPLACE_START - return new String[] { "1.6.0" }; + return new String[] { "1.6.1" }; // $REPLACE_END } } diff --git a/README.md b/README.md index d487fd01..2d5a2497 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ - A command line interface to render your worlds from scripts - The core rendering code as library to use in your own projects (releasing soon™) - Gamma corrected rendering -- Works with both 1.13+ worlds (currently: 1.15) +- Works with both 1.13+ worlds (currently: up to 1.15) ## Gallery @@ -40,7 +40,7 @@ Download the latest version from the [Release page](https://github.com/piegamesd The GUI version should just run by (double)clicking it. Otherwise run it through: - java -jar BlockMap-gui-1.6.0.jar + java -jar BlockMap-gui-1.6.1.jar to start. @@ -58,9 +58,9 @@ to start. If you want to use BlockMap through the command line without, # For general usage help - java -jar BlockMap-cli-1.6.0.jar help + java -jar BlockMap-cli-1.6.1.jar help # For help about rendering worlds to a folder - java -jar BlockMap-cli-1.6.0.jar help render + java -jar BlockMap-cli-1.6.1.jar help render will get you started. On Linux even with colors! @@ -81,7 +81,10 @@ All screenshots from aboce are generated automatically through the Gradle task ` To run from code: ```sh ./gradlew regenerate +# For the CLI ./gradlew run +# For the GUI +./gradlew BlockMap-gui:run ``` If this fails, try `./gradlew run2`\*. If you want to create a release jar and run it, use `./gradlew :BlockMap-gui:runShadow` and `./gradlew :BlockMap-cli:runShadow`. diff --git a/build.gradle b/build.gradle index 3f7e46f1..2bd18037 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ buildscript { apply plugin: "com.github.ben-manes.versions" allprojects { - version = '1.6.0' + version = '1.6.1' repositories { jcenter() diff --git a/changelog.md b/changelog.md index 7d614cc6..e85fb071 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## Version 1.6.1 +### Changes + +- Fixed a bug + ## Version 1.6.0 ### Changes - Added proper caves view