1.0.4
ModUpdater/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-06-24 16:22:00 -04:00
parent 88a6aa28fb
commit bc36e1d390
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# Changelog
**1.0.4**
* Improve File Compatibility Check
**1.0.3**
* Add Support For GitHub Releases
* Use Multi-Threading

View File

@ -9,7 +9,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.8.8+build.202
# Mod Properties
mod_version = 1.0.3
mod_version = 1.0.4
maven_group = com.thebrokenrail
# Dependencies

View File

@ -76,7 +76,7 @@ public class Util {
}
public static boolean isFileCompatible(String fileName) {
return !fileName.endsWith("-dev" + JAR_EXTENSION) && !fileName.endsWith("-sources" + JAR_EXTENSION) && !fileName.endsWith("-sources-dev" + JAR_EXTENSION);
return !fileName.endsWith("-dev" + JAR_EXTENSION) && !fileName.endsWith("-sources" + JAR_EXTENSION) && !fileName.endsWith("-sources-dev" + JAR_EXTENSION) && fileName.endsWith(JAR_EXTENSION);
}
public static GameVersion getMinecraftVersion() {