Skip to content

Commit

Permalink
refactor version names in favor of multiple supported mc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
btwonion committed Sep 26, 2023
1 parent cfa34da commit 33b0a3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
File renamed without changes.
5 changes: 3 additions & 2 deletions telekinesis-fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ plugins {
group = "dev.nyon"
val majorVersion = "2.3.1"
val mcVersion = "1.20.2"
version = "$majorVersion-$mcVersion"
val supportedMcVersions = listOf("1.20", "1.20.1", "1.20.2")
version = "$majorVersion-1.20"
description = "Adds a telekinesis enchantment to minecraft"
val projectAuthors = listOf("btwonion")
val githubRepo = "btwonion/telekinesis"
Expand Down Expand Up @@ -120,7 +121,7 @@ modrinth {
versionName.set(projectVersionname)
versionType.set("release")
uploadFile.set(tasks["remapJar"])
gameVersions.set(listOf(mcVersion))
gameVersions.set(supportedMcVersions)
loaders.set(listOf("fabric", "quilt"))
dependencies {
required.project("fabric-language-kotlin")
Expand Down

0 comments on commit 33b0a3c

Please sign in to comment.