Skip to content

Commit b076301

Browse files
committed
Bump version and update UMC repo
1 parent 69a2a33 commit b076301

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'cam72cam.universalmodcore'
11-
version '0.1.2'
11+
version '0.1.3'
1212
sourceCompatibility = 1.8
1313

1414
repositories {

src/main/java/cam72cam/universalmodcore/Config.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ public void init() {
6868
if (!asset.isPresent()) {
6969
throw new RuntimeException(String.format("Unable to locate version '%s' for Minecraft '%s'", vars.get("UMC_VERSION"), loaderVersion));
7070
}
71-
vars.put("UMC_DOWNLOAD", asset.get().downloadUrl);
71+
vars.put("UMC_DOWNLOAD", String.format("https://teamopenindustry.cc/maven/cam72cam/universalmodcore/UniversalModCore/%s-%s/UniversalModCore-%s-%s.jar", version, loaderVersion, version, loaderVersion));
7272
vars.put("UMC_DEPENDENCY", String.format("'curse.maven:universalmodcore:%s'", asset.get().id));
73-
vars.put("UMC_REPO", "");
73+
vars.put("UMC_REPO", "repositories { maven { url = \"https://teamopenindustry.cc/maven\" }}");
74+
7475
}
7576
}
7677

0 commit comments

Comments
 (0)