Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Jul 12, 2024
1 parent c58ad4a commit 8092c07
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 20 deletions.
10 changes: 2 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
### Changes
### Maintenance Update

- Unified publishing using **modpublisher.**
- Jar name migrate: `{id}-{mcversion}-{modversion}` -> `{id}-{modversion}-{loader}{mcversion}`.
- Tag name migrate: `{id}-{modversion}-mc{mcversion}` -> `{id}-{modversion}-{loader}{mcversion}`.

### Ownership Transfer

- **Transferred** ownership to **[Kessoku Tea Time.](https://github.com/KessokuTeaTime)**
- **Supported** `1.20.5+`.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies {
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21

withSourcesJar()
}
Expand Down Expand Up @@ -74,7 +74,7 @@ publisher {

versionType.set("release")
projectVersion.set(project.version.toString())
gameVersions.set(listOf("1.20", "1.20.1", "1.20.2", "1.20.3", "1.20.4"))
gameVersions.set(listOf("1.20.5", "1.20.6"))
loaders.set(listOf("fabric", "quilt"))
curseEnvironment.set("client")

Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ archives-name = "flash"
mod = "2.1.0"
loader = "fabric"

minecraft = "1.20"
yarn = "1.20+build.1"
fabric-loader = "0.15.10"
fabric-api = "0.83.0+1.20"
fabric-loom = "1.5-SNAPSHOT"
minecraft = "1.20.5"
yarn = "1.20.5+build.1"
fabric-loader = "0.16.0"
fabric-api = "0.97.8+1.20.5"
fabric-loom = "1.6-SNAPSHOT"
modpublisher = "2.1.0"

equator = "2.6.4-mc1.20"
Expand All @@ -20,7 +20,7 @@ id-curseforge = "998416"
# display
display-name = "Flash"
display-loader = "Fabric"
display-version = "1.20.x"
display-version = "1.20.5~1.20.6"

[libraries]
minecraft = { group = "com.mojang", name = "minecraft", version.ref = "minecraft" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ private DrawContext getMatrixStack(DrawContext context) {
method = "render",
at = @At(
value = "INVOKE",
target = "Lnet/minecraft/client/util/math/MatrixStack;pop()V",
target = "Lorg/joml/Matrix4fStack;popMatrix()Lorg/joml/Matrix4fStack;",
shift = At.Shift.AFTER
)
)
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 @@ -32,7 +32,7 @@
"fabricloader": "*",
"fabric-api": "*",
"fabric-key-binding-api-v1": "*",
"minecraft": "1.20.x"
"minecraft": ["~1.20.5", "~1.20.6"]
},
"suggests": {
}
Expand Down

0 comments on commit 8092c07

Please sign in to comment.