Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
piegamesde committed Feb 29, 2020
1 parent 266692c commit 8072854
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.

Expand All @@ -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!

Expand All @@ -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`.

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

allprojects {
version = '1.6.0'
version = '1.6.1'

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

## Version 1.6.1
### Changes

- Fixed a bug

## Version 1.6.0
### Changes
- Added proper caves view
Expand Down

0 comments on commit 8072854

Please sign in to comment.