Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Jul 17, 2024
1 parent b1f7d84 commit c0866f9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Maintenance Update

- **Supported** `1.20.5+`.
- **Use** fully semantic versioning.
18 changes: 4 additions & 14 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,12 +7,10 @@ plugins {
alias(libs.plugins.modpublisher)
}

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

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

base {
archivesName.set(libs.versions.archives.name)
Expand Down Expand Up @@ -86,7 +76,7 @@ publisher {
curseDepends.optional()
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 = "flash"
mod = "2.1.0"
mod = "2.1.1"
loader = "fabric"

minecraft = "1.21"
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": "flash",
"version": "${version}",

"name": "${display.name}",
"name": "${display.name.get()}",
"description": "Flashes as you take a screenshot.",
"authors": [
"KessokuTeaTime",
Expand Down

0 comments on commit c0866f9

Please sign in to comment.