update links, versions, etc

This commit is contained in:
dordsor21 2020-07-01 13:17:19 +01:00
parent 0bb6bc3563
commit efc1a888d8
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B
4 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@ FAWE is a fork of WorldEdit that has huge speed and memory improvements and cons
## Downloads
### 1.13+
* [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
* [Download](https://intellectualsites.github.io/download/fawe.html)
@ -35,7 +35,7 @@ $ gradlew setupDecompWorkspace
$ 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
Have an idea for an optimization, or a cool feature?

View File

@ -15,7 +15,7 @@ logger.lifecycle("""
*******************************************
""")
//TODO FIX THIS WHEN I FEEL LIKE IT
var rootVersion = "1.15"
var rootVersion = "1.16"
var revision: String = ""
var buildNumber = ""
var date: String = ""

View File

@ -305,7 +305,7 @@ public class Fawe {
br.close();
this.version = FaweVersion.tryParse(versionString, commitString, dateString);
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);
} catch (Throwable ignore) {}
try {

View File

@ -32,9 +32,9 @@ public class FaweVersion {
@Override public String toString() {
if (hash == 0 && build == 0) {
return "FastAsyncWorldEdit-1.15-NoVer-SNAPSHOT";
return "FastAsyncWorldEdit-1.16-NoVer-SNAPSHOT";
} else {
return "FastAsyncWorldEdit-1.15" + build;
return "FastAsyncWorldEdit-1.16" + build;
}
}