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

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
My-Name-Is-Jeff committed May 21, 2021
1 parent c3d7c32 commit c9b0e3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ This is a mod created for [SkyClient](https://github.com/nacrt/SkyblockClient).

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

Additionally, this mod would not be possible without Open Source Software, namely code from Wynntils and ChatShortcuts
Additionally, this mod would not be possible without Open Source Software, namely code from Wynntils and ChatShortcuts

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.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ plugins {

ext.kotlin_version = "1.5.0-RC"

version = "1.0.2"
version = "1.0.3"
group = "mynameisjeff"
archivesBaseName = "SkyblockClient-Updater"

sourceCompatibility = targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
compileJava.options.encoding = "UTF-8"
compileKotlin.kotlinOptions.jvmTarget = "1.8"

minecraft {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent
@Mod(modid = "skyblockclientupdater", name = "SkyClient Updater", version = SkyClientUpdater.VERSION, clientSideOnly = true, modLanguage = "kotlin", modLanguageAdapter = "mynameisjeff.skyblockclientupdater.utils.kotlin.KotlinAdapter")
object SkyClientUpdater {

const val VERSION = "1.0.2"
const val VERSION = "1.0.3"

@JvmField
val mc = Minecraft.getMinecraft()
Expand Down

0 comments on commit c9b0e3c

Please sign in to comment.