Skip to content

Commit

Permalink
fix doc url missing
Browse files Browse the repository at this point in the history
  • Loading branch information
wuseal committed Jul 31, 2021
1 parent 5b5c3cb commit 774eafe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ changelog {
}
sections = listOf(
SectionDefinition("Features", "feature request"),
SectionDefinition("Bugfix", "bug"),
SectionDefinition("Bugfix", listOf("bug", "bug fix")),
SectionDefinition("Enhancement", "enhancement")
) // no custom sections by default, but default sections are prepended
includeLabels = listOf("feature request", "bug", "enhancement")
Expand All @@ -88,7 +88,7 @@ changelog {
task("createGithubReleaseNotes") {
doLast {
val githubReleaseNoteFile = file("./githubReleaseNote.md")
val content ="**" + file("${projectDir}/doc/CHANGELOG.md").readText()
val content = "**" + file("${projectDir}/doc/CHANGELOG.md").readText()
.substringAfter("**").substringBefore("##").trim()
githubReleaseNoteFile.writeText(content)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ object ParcelableAnnotationSupport : Extension() {
override fun createUI(): JPanel {
return jHorizontalLinearLayout {
jCheckBox("Enable Parcelable Support ", getConfig(configKey).toBoolean(), { isSelected -> setConfig(configKey, isSelected.toString()) })
jLink("May Need Some Config", "https://github.com/wuseal/JsonToKotlinClass/blob/master/parceable_support_tip.md")
jLink("May Need Some Config", "https://github.com/wuseal/JsonToKotlinClass/blob/master/doc/parceable_support_tip.md")
fillSpace()
}
}
Expand Down

0 comments on commit 774eafe

Please sign in to comment.