3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-24 02:58:03 +02:00

Updated changelog, contributing info, gradle, etc

Dieser Commit ist enthalten in:
Matthew Miller 2018-10-04 16:15:35 +10:00
Ursprung 5aa8f7784e
Commit b46b0c3801
6 geänderte Dateien mit 15 neuen und 5 gelöschten Zeilen

1
.gitignore vendored
Datei anzeigen

@ -10,7 +10,6 @@ eclipse
bin bin
build build
target target
gradle
.gradle .gradle
forge-download forge-download
out out

Datei anzeigen

@ -1,3 +1,14 @@
7.0-beta-1
- Added support for 1.13.
- Removed support for all prior versions.
- Added a basic server-only GUI for editing. //drawsel to enable/disable. Requires creative.
- Added a tag mask, ##minecraft:tag_name.
- Added Sponge Schematic Format to replace MCEdit Schematics.
- Added a compatibility layer for old schematics.
- Rewrote the block parser, now uses official Minecraft format, minecraft:snow[layers=7]
- Removed deprecated code.
- Many more major changes!
6.1 6.1
- Added support for Spigot for MC 1.8.3 to 1.8.6. - Added support for Spigot for MC 1.8.3 to 1.8.6.
- Added rotation values to lit redstone torches. - Added rotation values to lit redstone torches.
@ -228,7 +239,7 @@ Thanks for the contributions from aumgn
- Removed chat-based WECUI protocol (now replaced with packet 250). - Removed chat-based WECUI protocol (now replaced with packet 250).
Thank you for the contributions from Ammar Askar (ammaraskar), aumgn, Thank you for the contributions from Ammar Askar (ammaraskar), aumgn,
Jim Nordbø (Silentspy), snaxson, Socolin, and Zhuowei Zhang (zhuowei). Jim Nordb<EFBFBD> (Silentspy), snaxson, Socolin, and Zhuowei Zhang (zhuowei).
5.3: 5.3:
- Made #region mask keep the region selected when the pask was added, and - Made #region mask keep the region selected when the pask was added, and

Datei anzeigen

@ -1,7 +1,7 @@
Compiling Compiling
========= =========
You can compile WorldEdit as long as you have the [Java Development Kit (JDK)](http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html) for Java 7 or newer. You can compile WorldEdit as long as you have the [Java Development Kit (JDK)](http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html) for Java 8 or newer.
You only need one version of the JDK installed. You only need one version of the JDK installed.
The build process uses Gradle, which you do *not* need to download. WorldEdit is a multi-module project with four modules: The build process uses Gradle, which you do *not* need to download. WorldEdit is a multi-module project with four modules:

Datei anzeigen

@ -8,7 +8,7 @@ ask that you make note of the following guidelines.
* **Follow the [Oracle coding conventions](http://www.oracle.com/technetwork/java/codeconv-138413.html).** * **Follow the [Oracle coding conventions](http://www.oracle.com/technetwork/java/codeconv-138413.html).**
We can't stress this enough; if your code has notable issues, it may delay We can't stress this enough; if your code has notable issues, it may delay
the process significantly. the process significantly.
* **Target Java 7 for source and compilation.** Make sure to mark methods with * **Target Java 8 for source and compilation.** Make sure to mark methods with
` @Override` that override methods of parent classes, or that implement ` @Override` that override methods of parent classes, or that implement
methods of interfaces. methods of interfaces.
* **Use only spaces for indentation.** Our indents are 4-spaces long, and tabs * **Use only spaces for indentation.** Our indents are 4-spaces long, and tabs

Binäre Datei nicht angezeigt.

Datei anzeigen

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists