User: rednesto Date: 13 Jul 24 14:42 Revision: 3f6f235cc39849350f81c73a31eaf26227deb1a5 Summary: Render the whole changelog This will do for now, so users have access to more context when checking future patches Also remove the repositoryUrl configuration because it causes the generation of invalid links to GitHub tags TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9422&personal=false Index: build.gradle.kts =================================================================== --- build.gradle.kts (revision 71d6934d4a39e7a1c07912491f6fd0694681fa38) +++ build.gradle.kts (revision 3f6f235cc39849350f81c73a31eaf26227deb1a5) @@ -194,9 +194,9 @@ } changelog { + version = coreVersion groups.empty() path = "changelog.md" - repositoryUrl = "https://github.com/minecraft-dev/MinecraftDev" } intellij { @@ -227,8 +227,7 @@ tasks.patchPluginXml { val changelog = project.changelog - val item = changelog.getOrNull(version.toString()) ?: changelog.getUnreleased() - changeNotes = changelog.renderItem(item.withHeader(false).withEmptySections(false), Changelog.OutputType.HTML) + changeNotes = changelog.render(Changelog.OutputType.HTML) } tasks.publishPlugin {