From 2ffec8efae973c5ea6609a2454d39327a8b3e55f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Hrivn=C3=A1k?= Date: Wed, 22 Mar 2023 19:56:56 +0100 Subject: [PATCH] Revert "Updated README.md" This reverts commit 39ba21402e25e289c5caa1612703321f3ca865fb. --- README.md | 33 ++++++--------------------------- 1 file changed, 6 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 3af4f4e..15aa3e9 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,24 @@ # Forgelin - -Fork of [Shadowfacts Forgelin](https://github.com/shadowfacts/Forgelin). +Fork of [Emberwalker's Forgelin](https://github.com/Emberwalker/Forgelin). ## Additions - - Shades the Kotlin standard library, runtime, coroutines-core, and reflect libraries so you don't have to. - Provides a Forge `ILanguageAdapter` for using Kotlin `object` classes as your main mod class. ## Usage - ```groovy repositories { jcenter() - maven { url 'https://jitpack.io' } + maven { + url "http://maven.shadowfacts.net/" + } } dependencies { - implementation 'com.github.Licious17:Forgelin:1.9.0' + compile group: "net.shadowfacts", name: "Forgelin", version: "LATEST_VERSION" } ``` -```kotlin -@Mod( - modid = MyMod.MOD_ID, - name = MyMod.MOD_NAME, - version = MyMod.VERSION, - modLanguageAdapter = "net.shadowfacts.forgelin.KotlinAdapter", - acceptableRemoteVersions = "*", - acceptedMinecraftVersions = "[1.12.2]" -) -object MyMod { - - const val MOD_ID = "mymod" - const val MOD_NAME = "MyMod" - const val VERSION = "1.0.0" - -} -``` - -Full credits to the og authors this simply updates Kotlin and the libraries version. -[EmberWalker](https://github.com/Emberwalker) -[ShadowFacts](https://github.com/shadowfacts) +All versions can be seen [here](http://maven.shadowfacts.net/net/shadowfacts/Forgelin/). **Note:** You must have the `jcenter()` call in your `repositories` block. JCenter is used to host the Kotlin coroutines libraries.