You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -342,7 +342,7 @@ If you would like to contribute a translation, you can find the language files i
342
342
343
343
## Download and installation
344
344
345
-
[**Download Version 1.13**](https://github.com/Querz/mcaselector/releases/download/1.13/mcaselector-1.13.jar)
345
+
[**Download Version 1.13.1**](https://github.com/Querz/mcaselector/releases/download/1.13.1/mcaselector-1.13.1.jar)
346
346
347
347
**MCA Selector modifies and deletes chunks in your Minecraft world. Please make backups of your world before using.**
348
348
@@ -355,23 +355,23 @@ If you would like to contribute a translation, you can find the language files i
355
355
* A brain
356
356
357
357
### What works on most systems
358
-
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.13.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.
358
+
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.13.1.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.
359
359
360
360
### If you have Minecraft Java Edition installed
361
361
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.
362
362
363
363
For Windows:
364
364
* Hold `Shift` and Right-click on an empty space and select `Open PowerShell window here` (`Open Command window here` on Windows 8 and earlier).
365
-
* Type `& "C:\Program Files (x86)\Minecraft\runtime\jre-x64\bin\java" -jar `, then drag and drop the `mcaselector-1.13.jar into the console` and press `Enter`. In the Command window (Windows 8 and earlier), the command starts with `"C:\Program Files (x86)\Minecraft\runtime\jre-x64\bin\java" -jar ` instead and the path to `mcaselector-1.13.jar` must be typed or copied and pasted into the console manually.
365
+
* Type `& "C:\Program Files (x86)\Minecraft\runtime\jre-x64\bin\java" -jar `, then drag and drop the `mcaselector-1.13.1.jar into the console` and press `Enter`. In the Command window (Windows 8 and earlier), the command starts with `"C:\Program Files (x86)\Minecraft\runtime\jre-x64\bin\java" -jar ` instead and the path to `mcaselector-1.13.1.jar` must be typed or copied and pasted into the console manually.
366
366
367
367
For MacOS:
368
368
* Press `Cmd+Space`, type `Terminal` and press `Enter`.
369
-
* Type `~/Library/Application\ Support/minecraft/runtime/jre-x64/jre.bundle/Contents/Home/bin/java -jar ` (with a space at the end), then drag and drop the `mcaselector-1.13.jar` into the console and press `Enter`.
369
+
* Type `~/Library/Application\ Support/minecraft/runtime/jre-x64/jre.bundle/Contents/Home/bin/java -jar ` (with a space at the end), then drag and drop the `mcaselector-1.13.1.jar` into the console and press `Enter`.
370
370
371
371
**WARNING:** For MacOS 10.14+ (Mojave) It is NOT recommended to use the JRE provided by Minecraft (1.8.0_74), because it contains a severe bug that causes JavaFX applications to crash when they lose focus while a dialog window (such as the save-file-dialog) is open (see the bug report [here](https://bugs.openjdk.java.net/browse/JDK-8211304)). This bug has been fixed in Java 1.8.0_201 and above.
372
372
373
373
### If you receive a JavaFX error
374
-
"When I run `mcaselector-1.13.jar`, an error dialog appears that looks like this:"
374
+
"When I run `mcaselector-1.13.1.jar`, an error dialog appears that looks like this:"
375
375
376
376
<palign="center">
377
377
<imgsrc="https://gist.githubusercontent.com/Querz/5e08c4ab863c2ad8b5da146dc4188ecb/raw/84ccd7e9b8e70b885a36f8bdf8fce62953be00b2/missing_javafx.png"alt="Popup dialog stating a missing JavaFX installation">
@@ -388,28 +388,28 @@ For MacOS:
388
388
Type the command `java -version` and press `Enter`. If the output shows that your java command is linked to `java version "1.8.0"`, you can simply run MCA Selector through the console.
389
389
390
390
For Windows and MacOS:
391
-
* Type `java -jar ` (with a space at the end) and drag and drop the `mcaselector-1.13.jar` into the console and hit `Enter`.
391
+
* Type `java -jar ` (with a space at the end) and drag and drop the `mcaselector-1.13.1.jar` into the console and hit `Enter`.
392
392
393
393
For Linux:
394
-
* Run `java -jar <path to mcaselector-1.13.jar` where you replace everything in `<>`.
394
+
* Run `java -jar <path to mcaselector-1.13.1.jar` where you replace everything in `<>`.
395
395
396
396
If the output shows a Java version higher than Java 8, please find and download the appropriate JavaFX version from [Here](https://gluonhq.com/products/javafx/). If you know what to do, do it. If you don't, follow these steps:
397
397
398
398
For Windows:
399
399
* Download "JavaFX Windows SDK" for your Java version from [here](https://gluonhq.com/products/javafx/).
400
400
* Unzip the `.zip`-file with your program of choice, then navigate into the unzipped folder.
401
-
* Hold `Shift` and Right-click on an empty space in that folder and select `Open PowerShell window here` (`Open Command window here` on Windows 8 and earlier). Type `java --module-path ` (with a space at the end), then drag and drop the `lib`-folder into the console. Continue to type ` --add-modules ALL-MODULE-PATH -jar ` (with a space at the beginning and the end), then drag and drop the `mcaselector-1.13.jar` into the console and hit `Enter`.
401
+
* Hold `Shift` and Right-click on an empty space in that folder and select `Open PowerShell window here` (`Open Command window here` on Windows 8 and earlier). Type `java --module-path ` (with a space at the end), then drag and drop the `lib`-folder into the console. Continue to type ` --add-modules ALL-MODULE-PATH -jar ` (with a space at the beginning and the end), then drag and drop the `mcaselector-1.13.1.jar` into the console and hit `Enter`.
402
402
403
403
For MacOS:
404
404
* Download "JavaFX Mac OS X SDK" for your Java version from [here](https://gluonhq.com/products/javafx/).
405
405
* Double-click the `.zip`-file to unpack, then navigate into the unzipped folder.
406
-
* Press `Cmd+Space`, type `Terminal` and press `Enter`. Type `java --module-path ` (with a space at the end), then drag and drop the `lib`-folder into the console. Continue to type `--add-modules ALL-MODULE-PATH -jar ` (with a space at the end), then drag and drop the `mcaselector-1.13.jar` into the console and hit `Enter`.
406
+
* Press `Cmd+Space`, type `Terminal` and press `Enter`. Type `java --module-path ` (with a space at the end), then drag and drop the `lib`-folder into the console. Continue to type `--add-modules ALL-MODULE-PATH -jar ` (with a space at the end), then drag and drop the `mcaselector-1.13.1.jar` into the console and hit `Enter`.
407
407
408
408
For Linux:
409
409
* Download "JavaFX Linux SDK" for your Java version from [here](https://gluonhq.com/products/javafx/).
410
410
* Unzip the `.zip`-file with your program of choice.
411
-
* Open the command prompt and run `java --module-path <path to unzipped folder>/lib --add-modules ALL-MODULE-PATH -jar <path to mcaselector-1.13.jar>` where you replace everything in `<>` with the appropriate paths.
412
-
* Some distributions like AdoptOpenJDK (shipped with most Linux distributions) do not ship with JavaFX by default. On Debian, an open version of JavaFX is contained in the `openjfx` package. This or some other installation of JavaFX is required to run the `mcaselector-1.13.jar`.
411
+
* Open the command prompt and run `java --module-path <path to unzipped folder>/lib --add-modules ALL-MODULE-PATH -jar <path to mcaselector-1.13.1.jar>` where you replace everything in `<>` with the appropriate paths.
412
+
* Some distributions like AdoptOpenJDK (shipped with most Linux distributions) do not ship with JavaFX by default. On Debian, an open version of JavaFX is contained in the `openjfx` package. This or some other installation of JavaFX is required to run the `mcaselector-1.13.1.jar`.
413
413
414
414
To avoid having to go through this process every time to start MCA Selector, the resulting command can be copied into a `.bat`-file on Windows or `.sh`-file on MaxOS and Linux and can then be executed by double-clicking the `.bat`-file on Windows or running `sh <file>.sh` in the terminal / console on MacOS or Linux where `<file>` must be replaced by the name of the `.sh`-file.
0 commit comments