Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Nov 28, 2021
1 parent 5c12a9c commit e060ec6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ curseforge {

project {
id = "550916"
changelog = "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
changelog = ENV.CHANGELOG ?: "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
releaseType = "release"
addGameVersion "${project.minecraft_version}"
addGameVersion "1.18-Snapshot"
addGameVersion "Fabric"

mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}-fabric.jar")) {
Expand All @@ -120,7 +120,7 @@ task modrinth(type: TaskModrinthUpload, dependsOn: remapJar) {
token = ENV.MODRINTH_TOKEN
projectId = "78ZQG4Et"
versionNumber = project.minecraft_version + "+" + version + "-fabric"
changelog = "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
changelog = ENV.CHANGELOG ?: "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
versionName = "[${project.minecraft_version}] TraderNPCs ${version} [Fabric]"
releaseType = "release"

Expand Down
4 changes: 2 additions & 2 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ curseforge {

project {
id = "550916"
changelog = "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
changelog = ENV.CHANGELOG ?: "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
releaseType = "release"
addGameVersion "${project.minecraft_version}"
addGameVersion "Forge"
Expand All @@ -124,7 +124,7 @@ task modrinth(type: TaskModrinthUpload, dependsOn: remapJar) {
token = ENV.MODRINTH_TOKEN
projectId = "78ZQG4Et"
versionNumber = project.minecraft_version + "+" + version + "-forge"
changelog = "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
changelog = ENV.CHANGELOG ?: "A changelog can be found at https://github.com/samolego/TraderNPCs/releases/tag/${version}"
versionName = "[${project.minecraft_version}] TraderNPCs ${version} [Forge]"
releaseType = "release"

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
org.gradle.jvmargs=-Xmx2048M

# Fabric
minecraft_version=1.18-pre5
yarn_mappings=1.18-pre5+build.4
minecraft_version=1.18-rc3
yarn_mappings=1.18-rc3+build.2
loader_version=0.12.5

#Fabric api
fabric_version=0.42.8+1.18
fabric_version=0.43.1+1.18

#Forge
forge_version=37.0.71
Expand Down

0 comments on commit e060ec6

Please sign in to comment.