Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit c9b0e3c

Browse files
1.0.3
1 parent c3d7c32 commit c9b0e3c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ This is a mod created for [SkyClient](https://github.com/nacrt/SkyblockClient).
44

55
Most of the code here was from my own work on [Skytils](https://github.com/Skytils/SkytilsMod)
66

7-
Additionally, this mod would not be possible without Open Source Software, namely code from Wynntils and ChatShortcuts
7+
Additionally, this mod would not be possible without Open Source Software, namely code from Wynntils and ChatShortcuts
8+
9+
If you choose to use any of my work, you must follow the terms of the GNU Affero General Public License v3.0, or any later version.

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ plugins {
77

88
ext.kotlin_version = "1.5.0-RC"
99

10-
version = "1.0.2"
10+
version = "1.0.3"
1111
group = "mynameisjeff"
1212
archivesBaseName = "SkyblockClient-Updater"
1313

1414
sourceCompatibility = targetCompatibility = 1.8
15-
compileJava.options.encoding = 'UTF-8'
15+
compileJava.options.encoding = "UTF-8"
1616
compileKotlin.kotlinOptions.jvmTarget = "1.8"
1717

1818
minecraft {

src/main/kotlin/mynameisjeff/skyblockclientupdater/SkyClientUpdater.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent
1313
@Mod(modid = "skyblockclientupdater", name = "SkyClient Updater", version = SkyClientUpdater.VERSION, clientSideOnly = true, modLanguage = "kotlin", modLanguageAdapter = "mynameisjeff.skyblockclientupdater.utils.kotlin.KotlinAdapter")
1414
object SkyClientUpdater {
1515

16-
const val VERSION = "1.0.2"
16+
const val VERSION = "1.0.3"
1717

1818
@JvmField
1919
val mc = Minecraft.getMinecraft()

0 commit comments

Comments
 (0)