Skip to content

Commit

Permalink
update version to 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Querz committed Apr 29, 2019
1 parent 383ff51 commit 97ea3e4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,14 @@ The MCA Selector currently supports the following Minecraft versions:
| Minecraft Version | DataVersion | Supported |
| ----------------- | ----------- | :-------: |
| Beta 1.3 - 1.12.2 | 100 - 1343 | Yes |
| 1.13 | 1444 - ? | Yes |
| 1.13 - 1.13.2 | 1444 - 1631 | Yes |
| 1.14 | 1901 - ? | Yes |

---

## Download and installation

[**Download Version 1.5**](https://github.com/Querz/mcaselector/releases/download/1.5/mcaselector-1.5.jar)
[**Download Version 1.6**](https://github.com/Querz/mcaselector/releases/download/1.6/mcaselector-1.6.jar)

"Requirements":
* Either:
Expand All @@ -87,11 +88,11 @@ The MCA Selector currently supports the following Minecraft versions:

#### If you have Java from Oracle installed on your system:

Most likely, `.jar` files are associated with java on your computer, it should therefore launch by simply double clicking the file (or however your OS is configured to open files using your mouse or keyboard). If not, you can try `java -jar mcaselector-1.5.jar` from your console. If this doesn't work, you might want to look into how to modify the `PATH` variable on your system to tell your system that java is an executable program.
Most likely, `.jar` files are associated with java on your computer, it should therefore launch by simply double clicking the file (or however your OS is configured to open files using your mouse or keyboard). If not, you can try `java -jar mcaselector-1.6.jar` from your console. If this doesn't work, you might want to look into how to modify the `PATH` variable on your system to tell your system that java is an executable program.

#### If you have Minecraft Java Edition installed on your system:

Minecraft Java Edition comes with a JRE that you can use to start the MCA Selector, so there is no need to install another version of java on your system. On Windows, that java version is usually located in `C:\Program Files (x86)\Minecraft\runtime\jre-x64\bin\` and once inside this folder you can simply run `java.exe -jar <path-to-mcaselector-1.5.jar>`. On Mac OS you should find it in `Applications/Minecraft.app/Contents/runtime/jre-x64/1.8.0_74/bin` where you can execute `./java -jar <path-to-mcaselector-1.5.jar>`.
Minecraft Java Edition comes with a JRE that you can use to start the MCA Selector, so there is no need to install another version of java on your system. On Windows, that java version is usually located in `C:\Program Files (x86)\Minecraft\runtime\jre-x64\bin\` and once inside this folder you can simply run `java.exe -jar <path-to-mcaselector-1.6.jar>`. On Mac OS you should find it in `Applications/Minecraft.app/Contents/runtime/jre-x64/1.8.0_74/bin` where you can execute `./java -jar <path-to-mcaselector-1.6.jar>`.

#### If you are using OpenJDK:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apply plugin: 'idea'
apply plugin: 'css'

group 'net.querz.mcaselector'
version '1.5.1'
version '1.6'

sourceCompatibility = 1.8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ public static ChunkFilter getChunkFilter(int dataVersion) {

private enum Mapping {

// see https://minecraft-de.gamepedia.com/Versionen

ANVIL_1_12(0, 1343, Anvil112ChunkDataProcessor.class, Anvil112ColorMapping.class, Anvil112ChunkFilter.class),
ANVIL_1_13(1344, Integer.MAX_VALUE, Anvil113ChunkDataProcessor.class, Anvil113ColorMapping.class, Anvil113ChunkFilter.class);

Expand Down Expand Up @@ -73,6 +75,7 @@ ChunkFilter getChunkFilter() {

//wohooo! Runtime optimization!
static Mapping match(int dataVersion) {
System.out.println(dataVersion);
for (Mapping m : Mapping.values()) {
if (m.from <= dataVersion && m.to >= dataVersion) {
return m;
Expand Down

0 comments on commit 97ea3e4

Please sign in to comment.