diff options
author | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2021-02-07 23:43:26 -0800 |
---|---|---|
committer | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2021-02-07 23:43:26 -0800 |
commit | bfde82eaaaa9e667ab53ecfa986cebfcad515abb (patch) | |
tree | c8b6198b6dd037846e306e21e06119ed0e324aea | |
parent | 2a30973642c3cddd5d42f1c955caea73cd946134 (diff) | |
download | KotlinForForge-bfde82eaaaa9e667ab53ecfa986cebfcad515abb.tar.gz KotlinForForge-bfde82eaaaa9e667ab53ecfa986cebfcad515abb.tar.bz2 KotlinForForge-bfde82eaaaa9e667ab53ecfa986cebfcad515abb.zip |
Kotlin for Forge 1.9.0
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | changelog.md | 5 | ||||
-rw-r--r-- | gradle.properties | 2 | ||||
-rw-r--r-- | src/main/kotlin/thedarkcolour/kotlinforforge/KotlinForForge.kt | 2 | ||||
-rw-r--r-- | src/main/resources/META-INF/mods.toml | 4 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar | bin | 0 -> 42092 bytes | |||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.md5 | 1 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.sha1 | 1 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar | bin | 0 -> 117196 bytes | |||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.md5 | 1 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.sha1 | 1 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom | 59 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.md5 | 1 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.sha1 | 1 | ||||
-rw-r--r-- | thedarkcolour/kotlinforforge/1.9.0/web.html | 20 |
15 files changed, 94 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index c0855c3..464f906 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ apply plugin: 'kotlin' apply plugin: 'kotlinx-serialization' apply plugin: 'org.jetbrains.dokka' -version = "1.8.0" +version = "1.9.0" group = 'thedarkcolour.kotlinforforge' archivesBaseName = 'kotlinforforge' diff --git a/changelog.md b/changelog.md index c5a6761..1eb45c0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,10 @@ +##Kotlin for Forge 1.9.0 +- Updated to Kotlin 1.4.30 + ##Kotlin for Forge 1.8.0 - Fixed a few things to match the new EventBus version. - Fix #11 and #12. Event bus wrapper now posts events properly. -- Now includes the Kotlin JSON Serialization library. +- Now includes the Kotlin JSON Serialization 1.0.1 library. ##Kotlin for Forge 1.7.0 - Added `registerObject` function to KDeferredRegister for getting ObjectHolderDelegate instances diff --git a/gradle.properties b/gradle.properties index 200a842..0fad2c8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ kotlin.code.style=official org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -kotlin_version=1.4.21 +kotlin_version=1.4.30 coroutines_version = 1.4.2 annotations_version = 20.1.0 serialization_version = 1.0.1
\ No newline at end of file diff --git a/src/main/kotlin/thedarkcolour/kotlinforforge/KotlinForForge.kt b/src/main/kotlin/thedarkcolour/kotlinforforge/KotlinForForge.kt index 168d3f0..cd362b4 100644 --- a/src/main/kotlin/thedarkcolour/kotlinforforge/KotlinForForge.kt +++ b/src/main/kotlin/thedarkcolour/kotlinforforge/KotlinForForge.kt @@ -5,7 +5,7 @@ import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext /** * Set `modLoader` in mods.toml to - * `"kotlinforforge"` and loaderVersion to `"[1.7,)"`. + * `"kotlinforforge"` and loaderVersion to `"[1.9,)"`. * * Make sure to use [KotlinModLoadingContext] * instead of [FMLJavaModLoadingContext]. diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 370d49c..75150f8 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -1,5 +1,5 @@ modLoader="kotlinforforge" # IModLanguageProvider -loaderVersion="[1.8,)" # IModLanguageProvider version +loaderVersion="[1.9,)" # IModLanguageProvider version license="GPL v3.0" # A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. @@ -30,7 +30,7 @@ license="GPL v3.0" [[mods]] #mandatory displayName="Kotlin for Forge" # Name of mod modId="kotlinforforge" # Modid -version="1.7.1" # Version of kotlinforforge +version="1.9.0" # Version of kotlinforforge authors="TheDarkColour" # Author credits="Herobrine knows all." # Credits description=''' diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar Binary files differnew file mode 100644 index 0000000..1e66a94 --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.md5 b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.md5 new file mode 100644 index 0000000..1ab9b5c --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.md5 @@ -0,0 +1 @@ +cdc00eaeba206e62472498e1f87f06ee
\ No newline at end of file diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.sha1 b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.sha1 new file mode 100644 index 0000000..72199a1 --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0-sources.jar.sha1 @@ -0,0 +1 @@ +e28d06197df9f29f8c07589c088efca3a42a7e09
\ No newline at end of file diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar Binary files differnew file mode 100644 index 0000000..9ec81cb --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.md5 b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.md5 new file mode 100644 index 0000000..ad03cd8 --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.md5 @@ -0,0 +1 @@ +98fd5e13cb06d7692e8ef9cb62223f89
\ No newline at end of file diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.sha1 b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.sha1 new file mode 100644 index 0000000..3c5f9c5 --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.jar.sha1 @@ -0,0 +1 @@ +2df554d4f74d9b256b1568de7b333c916530b7b0
\ No newline at end of file diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom new file mode 100644 index 0000000..d0ffff6 --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <groupId>thedarkcolour</groupId> + <artifactId>kotlinforforge</artifactId> + <version>1.8.0</version> + <dependencies> + <dependency> + <groupId>org.jetbrains.kotlin</groupId> + <artifactId>kotlin-stdlib</artifactId> + <version>1.4.30</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.jetbrains.kotlin</groupId> + <artifactId>kotlin-stdlib-jdk7</artifactId> + <version>1.4.30</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.jetbrains.kotlin</groupId> + <artifactId>kotlin-stdlib-jdk8</artifactId> + <version>1.4.30</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.jetbrains.kotlin</groupId> + <artifactId>kotlin-reflect</artifactId> + <version>1.4.30</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.jetbrains</groupId> + <artifactId>annotations</artifactId> + <version>20.1.0</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.jetbrains.kotlinx</groupId> + <artifactId>kotlinx-coroutines-core</artifactId> + <version>1.4.2</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.jetbrains.kotlinx</groupId> + <artifactId>kotlinx-coroutines-jdk8</artifactId> + <version>1.4.2</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.jetbrains.kotlinx</groupId> + <artifactId>kotlinx-serialization-json</artifactId> + <version>1.0.1</version> + <scope>compile</scope> + </dependency> + </dependencies> +</project> diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.md5 b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.md5 new file mode 100644 index 0000000..7240dd1 --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.md5 @@ -0,0 +1 @@ +c742041dce4a56c18a69ee1ee0c4475b
\ No newline at end of file diff --git a/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.sha1 b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.sha1 new file mode 100644 index 0000000..13bd663 --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/kotlinforforge-1.9.0.pom.sha1 @@ -0,0 +1 @@ +0bf61980baca726bf6688b5977359ca1d1d489ec
\ No newline at end of file diff --git a/thedarkcolour/kotlinforforge/1.9.0/web.html b/thedarkcolour/kotlinforforge/1.9.0/web.html new file mode 100644 index 0000000..a54b95c --- /dev/null +++ b/thedarkcolour/kotlinforforge/1.9.0/web.html @@ -0,0 +1,20 @@ +<html lang="HTML5"> +<link rel="stylesheet" href="../../style.css"> +<head><title>Index of /1.9.0/</title></head> +<body> +<h1>Index of /kotlinforforge/</h1> +<hr> +<pre><a href="../web.html">../</a> +<a href="kotlinforforge-1.9.0-sources.jar">kotlinforforge-1.9.0-sources.jar</a> +<a href="kotlinforforge-1.9.0-sources.jar.sha1">kotlinforforge-1.9.0-sources.jar.sha1</a> +<a href="kotlinforforge-1.9.0-sources.jar.md5">kotlinforforge-1.9.0-sources.jar.md5</a> +<a href="kotlinforforge-1.9.0.jar">kotlinforforge-1.9.0.jar</a> +<a href="kotlinforforge-1.9.0.jar.sha1">kotlinforforge-1.9.0.jar.sha1</a> +<a href="kotlinforforge-1.9.0.jar.md5">kotlinforforge-1.9.0.jar.md5</a> +<a href="kotlinforforge-1.9.0.pom">kotlinforforge-1.9.0.pom</a> +<a href="kotlinforforge-1.9.0.pom.sha1">kotlinforforge-1.9.0.pom.sha1</a> +<a href="kotlinforforge-1.9.0.pom.md5">kotlinforforge-1.9.0.pom.md5</a> +</pre> +<hr> +</body> +</html> |