mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-05 11:39:57 -04:00
bump to 0.1.2, bump dependencies
This commit is contained in:
parent
1f5a81e03e
commit
d96b4c3a24
4 changed files with 6 additions and 6 deletions
|
@ -26,7 +26,7 @@ targetCompatibility = 1.8
|
|||
|
||||
archivesBaseName = "fabric"
|
||||
|
||||
def baseVersion = "0.1.1"
|
||||
def baseVersion = "0.1.2"
|
||||
def mcVersion = "18w50a"
|
||||
|
||||
def ENV = System.getenv()
|
||||
|
@ -38,8 +38,8 @@ minecraft {
|
|||
|
||||
dependencies {
|
||||
minecraft "com.mojang:minecraft:$mcVersion"
|
||||
mappings "net.fabricmc:yarn:$mcVersion.34"
|
||||
modCompile "net.fabricmc:fabric-loader:0.3.0.72"
|
||||
mappings "net.fabricmc:yarn:$mcVersion.59"
|
||||
modCompile "net.fabricmc:fabric-loader:0.3.0.73"
|
||||
}
|
||||
|
||||
task sourcesJar(type: Jar, dependsOn: classes) {
|
||||
|
|
|
@ -40,7 +40,7 @@ public final class ModResourcePackUtil {
|
|||
}
|
||||
|
||||
public static void appendModResourcePacks(List<ResourcePack> packList, ResourceType type) {
|
||||
for (ModContainer container : FabricLoader.INSTANCE.getMods()) {
|
||||
for (ModContainer container : FabricLoader.INSTANCE.getModContainers()) {
|
||||
File file = container.getOriginFile();
|
||||
ResourcePack pack = null;
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ public abstract class MixinCrashReport {
|
|||
private void method_559(CallbackInfo info) {
|
||||
getElement().add("Fabric Mods", () -> {
|
||||
Map<String, String> mods = new TreeMap<>();
|
||||
for (ModContainer container : FabricLoader.INSTANCE.getMods()) {
|
||||
for (ModContainer container : FabricLoader.INSTANCE.getModContainers()) {
|
||||
mods.put(container.getInfo().getName(), container.getInfo().getVersionString() + " (" + container.getOriginFile().getName() + ")");
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "fabric",
|
||||
"name": "Fabric API",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"side": "universal",
|
||||
"description": "Core API module providing key hooks and intercompatibility features.",
|
||||
"license": "Apache-2.0",
|
||||
|
|
Loading…
Add table
Reference in a new issue