geforkt von Mirrors/FastAsyncWorldEdit
update links, versions, etc
Dieser Commit ist enthalten in:
Ursprung
0bb6bc3563
Commit
efc1a888d8
@ -17,7 +17,7 @@ FAWE is a fork of WorldEdit that has huge speed and memory improvements and cons
|
|||||||
## Downloads
|
## Downloads
|
||||||
### 1.13+
|
### 1.13+
|
||||||
* [Download](https://intellectualsites.github.io/download/fawe.html)
|
* [Download](https://intellectualsites.github.io/download/fawe.html)
|
||||||
* [Jenkins](https://ci.athion.net/job/FastAsyncWorldEdit-1.15/)
|
* [Jenkins](https://ci.athion.net/job/FastAsyncWorldEdit-1.16/)
|
||||||
|
|
||||||
### < 1.12.2
|
### < 1.12.2
|
||||||
* [Download](https://intellectualsites.github.io/download/fawe.html)
|
* [Download](https://intellectualsites.github.io/download/fawe.html)
|
||||||
@ -35,7 +35,7 @@ $ gradlew setupDecompWorkspace
|
|||||||
$ gradlew build
|
$ gradlew build
|
||||||
```
|
```
|
||||||
|
|
||||||
The jar is located in `worldedit-bukkit/build/libs/FastAsyncWorldEdit-1.15-###.jar`
|
The jar is located in `worldedit-bukkit/build/libs/FastAsyncWorldEdit-1.16-###.jar`
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
Have an idea for an optimization, or a cool feature?
|
Have an idea for an optimization, or a cool feature?
|
||||||
|
@ -15,7 +15,7 @@ logger.lifecycle("""
|
|||||||
*******************************************
|
*******************************************
|
||||||
""")
|
""")
|
||||||
//TODO FIX THIS WHEN I FEEL LIKE IT
|
//TODO FIX THIS WHEN I FEEL LIKE IT
|
||||||
var rootVersion = "1.15"
|
var rootVersion = "1.16"
|
||||||
var revision: String = ""
|
var revision: String = ""
|
||||||
var buildNumber = ""
|
var buildNumber = ""
|
||||||
var date: String = ""
|
var date: String = ""
|
||||||
|
@ -305,7 +305,7 @@ public class Fawe {
|
|||||||
br.close();
|
br.close();
|
||||||
this.version = FaweVersion.tryParse(versionString, commitString, dateString);
|
this.version = FaweVersion.tryParse(versionString, commitString, dateString);
|
||||||
Settings.IMP.DATE = new Date(100 + version.year, version.month, version.day).toGMTString();
|
Settings.IMP.DATE = new Date(100 + version.year, version.month, version.day).toGMTString();
|
||||||
Settings.IMP.BUILD = "https://ci.athion.net/job/FastAsyncWorldEdit-1.15/" + version.build;
|
Settings.IMP.BUILD = "https://ci.athion.net/job/FastAsyncWorldEdit-1.16/" + version.build;
|
||||||
Settings.IMP.COMMIT = "https://github.com/IntellectualSites/FastAsyncWorldEdit/commit/" + Integer.toHexString(version.hash);
|
Settings.IMP.COMMIT = "https://github.com/IntellectualSites/FastAsyncWorldEdit/commit/" + Integer.toHexString(version.hash);
|
||||||
} catch (Throwable ignore) {}
|
} catch (Throwable ignore) {}
|
||||||
try {
|
try {
|
||||||
|
@ -32,9 +32,9 @@ public class FaweVersion {
|
|||||||
|
|
||||||
@Override public String toString() {
|
@Override public String toString() {
|
||||||
if (hash == 0 && build == 0) {
|
if (hash == 0 && build == 0) {
|
||||||
return "FastAsyncWorldEdit-1.15-NoVer-SNAPSHOT";
|
return "FastAsyncWorldEdit-1.16-NoVer-SNAPSHOT";
|
||||||
} else {
|
} else {
|
||||||
return "FastAsyncWorldEdit-1.15" + build;
|
return "FastAsyncWorldEdit-1.16" + build;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren