Skip to content

Commit 512d811

Browse files
Some small changes
1 parent 3d79c26 commit 512d811

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ java {
4444
import com.modrinth.minotaur.dependencies.ModDependency
4545
modrinth {
4646
token = System.getenv("MODRINTH_TOKEN")
47-
versionName = "SnowyLeavesPlus ${version}"
48-
versionNumber = version
47+
versionName = "SnowyLeavesPlus ${version} for Minecraft ${project.minecraft_version}"
48+
versionNumber = "${version}-mc${project.minecraft_version}"
4949
projectId = "of7wIinq"
5050
uploadFile = remapJar
5151
versionType = "beta"
@@ -60,12 +60,11 @@ curseforge {
6060
project {
6161
id = "611998"
6262
releaseType = "beta"
63-
addGameVersion("1.19.4")
6463
addGameVersion("Fabric")
6564
addGameVersion("Quilt")
65+
addGameVersion("1.19.4")
6666
mainArtifact(remapJar) {
67-
changelogType = "markdown"
68-
displayName = "SnowyLeavesPlus ${version}"
67+
displayName = "SnowyLeavesPlus ${version} for Minecraft ${project.minecraft_version}"
6968
}
7069
relations { requiredDependency("fabric-api") }
7170
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx2G
44
minecraft_version=1.19.4
55
yarn_mappings=1.19.4+build.1
66
loader_version=0.14.17
7-
fabric_version=0.75.3+1.19.4
7+
fabric_version=0.76.0+1.19.4
88

99
# Mod Properties
1010
mod_version=0.1.5

src/main/resources/fabric.mod.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
},
1313
"license": "MPL-2.0",
1414
"icon": "assets/snowyleavesplus/icon.png",
15-
"environment": "client",
1615
"entrypoints": {
1716
"client": ["io.github.therookiecoder.snowyleavesplus.SnowyLeavesPlusClient"]
1817
},

src/main/resources/quilt.mod.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"name": "SnowyLeavesPlus",
2121
"description": "When it is snowing, leaves will slowly turn white, and when it is not, they will turn back to normal",
2222
"contributors": {
23-
"Owner": "theRookieCoder"
23+
"theRookieCoder": "Owner"
2424
},
2525
"contact": {
2626
"email": "ileshkt@gmail.com",
@@ -31,8 +31,5 @@
3131
"icon": "assets/snowyleavesplus/icon.png"
3232
}
3333
},
34-
"mixin": "snowyleavesplus.mixins.json",
35-
"minecraft": {
36-
"environment": "client"
37-
}
34+
"mixin": "snowyleavesplus.mixins.json"
3835
}

src/main/resources/snowyleavesplus.mixins.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"minVersion": "0.8",
44
"package": "io.github.therookiecoder.snowyleavesplus.mixin",
55
"compatibilityLevel": "JAVA_17",
6-
"client": [
6+
"mixins": [
77
"BlockInvoker",
88
"LeavesBlockMixin"
99
],

0 commit comments

Comments
 (0)