1.1.1
ModUpdater/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-06-25 18:24:27 -04:00
parent 897cec88d3
commit 26073170b7
3 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
**1.1.1**
* Use CurseForge For Fabric API
**1.1.0** **1.1.0**
* Stabilize * Stabilize
* Improve Error Messages * Improve Error Messages

View File

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

View File

@ -97,10 +97,8 @@ public class Util {
switch (modID) { switch (modID) {
case "fabric": { case "fabric": {
Map<String, Object> map = new HashMap<>(); Map<String, Object> map = new HashMap<>();
map.put("strategy", "maven"); map.put("strategy", "curseforge");
map.put("repository", "https://maven.fabricmc.net"); map.put("projectID", 306612);
map.put("group", "net.fabricmc.fabric-api");
map.put("artifact", "fabric-api");
return new ConfigObjectHardcoded(map); return new ConfigObjectHardcoded(map);
} }
case "modmenu": { case "modmenu": {