Skip to content

Commit

Permalink
更新至 1.20.2-pre4
Browse files Browse the repository at this point in the history
  • Loading branch information
SolidBlock-cn committed Sep 14, 2023
1 parent 55489df commit c6b3dcd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,13 @@ curseforge {
id = '583071'
changelog = content
changelogType = 'markdown'
releaseType = 'release'
releaseType = project.mod_version.contains('-') ? 'beta' : 'release'
mainArtifact remapJar

for (final def v in (project.supported_minecraft_versions.split(','))) {
addGameVersion v
}
// for (final def v in (project.supported_minecraft_versions.split(','))) {
// addGameVersion v
// }
addGameVersion '1.20.2-Snapshot' // todo complete after release
addGameVersion 'Fabric'

relations {
Expand All @@ -151,7 +152,7 @@ modrinth {

projectId = "rItLmRo4" // 迷上城建模组的 Modrinth ID
versionNumber = project.mod_version + '-' + project.minecraft_version
versionType = 'release' // until release of MC
versionType = project.mod_version.contains('-') ? 'beta' : 'release' // until release of MC
uploadFile = remapJar
gameVersions = Arrays.asList(project.supported_minecraft_versions.split(','))

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/develop/
minecraft_version=1.20.2-pre2
supported_minecraft_versions=1.20.2-pre2,1.20.2-pre3
minecraft_version=1.20.2-pre4
supported_minecraft_versions=1.20.2-pre4
loader_version=0.14.22
yarn_mappings=1.20.2-pre2+build.5
yarn_mappings=1.20.2-pre4+build.1

# Fabric API
fabric_api_version=0.88.3+1.20.2
fabric_api_version=0.88.4+1.20.2

# BRRP
brrp_version=1.0.1-beta.1
Expand Down

0 comments on commit c6b3dcd

Please sign in to comment.