Skip to content

Commit 8072854

Browse files
committed
Version bump
1 parent 266692c commit 8072854

4 files changed

Lines changed: 14 additions & 6 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
@@ -8,7 +8,7 @@ public class VersionProvider implements IVersionProvider {
88
public String[] getVersion() throws Exception {
99
/* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */
1010
// $REPLACE_START
11-
return new String[] { "1.6.0" };
11+
return new String[] { "1.6.1" };
1212
// $REPLACE_END
1313
}
1414
}

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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™)
1919
- Gamma corrected rendering
20-
- Works with both 1.13+ worlds (currently: 1.15)
20+
- Works with both 1.13+ worlds (currently: up to 1.15)
2121

2222
## Gallery
2323

@@ -40,7 +40,7 @@ Download the latest version from the [Release page](https://github.com/piegamesd
4040

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

43-
java -jar BlockMap-gui-1.6.0.jar
43+
java -jar BlockMap-gui-1.6.1.jar
4444

4545
to start.
4646

@@ -58,9 +58,9 @@ to start.
5858
If you want to use BlockMap through the command line without,
5959

6060
# For general usage help
61-
java -jar BlockMap-cli-1.6.0.jar help
61+
java -jar BlockMap-cli-1.6.1.jar help
6262
# For help about rendering worlds to a folder
63-
java -jar BlockMap-cli-1.6.0.jar help render
63+
java -jar BlockMap-cli-1.6.1.jar help render
6464

6565
will get you started. On Linux even with colors!
6666

@@ -81,7 +81,10 @@ All screenshots from aboce are generated automatically through the Gradle task `
8181
To run from code:
8282
```sh
8383
./gradlew regenerate
84+
# For the CLI
8485
./gradlew run
86+
# For the GUI
87+
./gradlew BlockMap-gui:run
8588
```
8689
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`.
8790

build.gradle

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

1818
allprojects {
19-
version = '1.6.0'
19+
version = '1.6.1'
2020

2121
repositories {
2222
jcenter()

changelog.md

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

3+
## Version 1.6.1
4+
### Changes
5+
6+
- Fixed a bug
7+
38
## Version 1.6.0
49
### Changes
510
- Added proper caves view

0 commit comments

Comments
 (0)