Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
qouteall committed Dec 31, 2023
1 parent 95998f8 commit 8fc18bc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
28 changes: 27 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'fabric-loom' version '1.4-SNAPSHOT'
id 'maven-publish'

// id 'io.github.juuxel.loom-vineflower' version '1.11.0' // https://github.com/Juuxel/loom-vineflower
id "me.modmuss50.mod-publish-plugin" version "0.3.5"
}

sourceCompatibility = JavaVersion.VERSION_17
Expand Down Expand Up @@ -125,3 +125,29 @@ publishing {
// retrieving dependencies.
}
}

publishMods {
file = remapJar.archiveFile
changelog = file("changelog.md").text
type = ALPHA
modLoaders.add("fabric")

displayName = "v${project.mod_version}-mc${project.minecraft_version}"
version = "v${project.mod_version}-mc${project.minecraft_version}"

curseforge {
projectId = "532473"
accessToken = providers.environmentVariable("CURSEFORGE_TOKEN")
minecraftVersions.add(minecraft_version)
}
modrinth {
projectId = "wrwoMwak"
accessToken = providers.environmentVariable("MODRINTH_TOKEN")
minecraftVersions.add(minecraft_version)
}
github {
repository = "iPortalTeam/MiniScaledMod"
accessToken = providers.environmentVariable("GITHUB_TOKEN")
commitish = minecraft_version // the branch name is the same as minecraft version
}
}
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
In 4.0.0, this mod has been greatly overhauled. Added the feature of wrapping, unwrapping and viewing scale boxes. See the wiki for more details.

0 comments on commit 8fc18bc

Please sign in to comment.