Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Jul 17, 2024
1 parent fe38881 commit 122e69a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
16 changes: 3 additions & 13 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
class Display {
lateinit var name: String
lateinit var loader: String
lateinit var version: String
}

var display: Display = Display()

plugins {
base
java
Expand All @@ -15,13 +7,11 @@ plugins {
alias(libs.plugins.modpublisher)
}

val display = libs.versions.display

group = libs.versions.maven.group.get()
version = "${libs.versions.mod.get()}-${libs.versions.loader.get()}.${libs.versions.minecraft.get()}"

display.name = libs.versions.display.name.get()
display.loader = libs.versions.display.loader.get()
display.version = libs.versions.display.version.get()

base {
archivesName.set(libs.versions.archives.name)
}
Expand Down Expand Up @@ -96,7 +86,7 @@ publisher {
curseDepends.optional("splasher")
curseDepends.embedded()

displayName.set("${display.name} ${libs.versions.mod.get()} for ${display.loader} ${display.version}")
displayName.set("${display.name.get()} ${libs.versions.mod.get()} for ${display.loader.get()} ${display.version.get()}")

artifact.set(tasks.remapJar)
addAdditionalFile(tasks.remapSourcesJar)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
maven-group = "band.kessokuteatime"
archives-name = "bounced"
mod = "4.1.2"
mod = "4.1.3"
loader = "fabric"

minecraft = "1.20"
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "bounced",
"version": "${version}",

"name": "${display.name}",
"name": "${display.name.get()}",
"description": "Get your 'Minecraft' bounced!",
"authors": [
"Kessoku Tea Time",
Expand Down

0 comments on commit 122e69a

Please sign in to comment.