Skip to content

Commit 774eafe

Browse files
committed
fix doc url missing
1 parent 5b5c3cb commit 774eafe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ changelog {
7070
}
7171
sections = listOf(
7272
SectionDefinition("Features", "feature request"),
73-
SectionDefinition("Bugfix", "bug"),
73+
SectionDefinition("Bugfix", listOf("bug", "bug fix")),
7474
SectionDefinition("Enhancement", "enhancement")
7575
) // no custom sections by default, but default sections are prepended
7676
includeLabels = listOf("feature request", "bug", "enhancement")
@@ -88,7 +88,7 @@ changelog {
8888
task("createGithubReleaseNotes") {
8989
doLast {
9090
val githubReleaseNoteFile = file("./githubReleaseNote.md")
91-
val content ="**" + file("${projectDir}/doc/CHANGELOG.md").readText()
91+
val content = "**" + file("${projectDir}/doc/CHANGELOG.md").readText()
9292
.substringAfter("**").substringBefore("##").trim()
9393
githubReleaseNoteFile.writeText(content)
9494
}

src/main/kotlin/extensions/jose/han/ParcelableAnnotationSupport.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ object ParcelableAnnotationSupport : Extension() {
2424
override fun createUI(): JPanel {
2525
return jHorizontalLinearLayout {
2626
jCheckBox("Enable Parcelable Support ", getConfig(configKey).toBoolean(), { isSelected -> setConfig(configKey, isSelected.toString()) })
27-
jLink("May Need Some Config", "https://github.com/wuseal/JsonToKotlinClass/blob/master/parceable_support_tip.md")
27+
jLink("May Need Some Config", "https://github.com/wuseal/JsonToKotlinClass/blob/master/doc/parceable_support_tip.md")
2828
fillSpace()
2929
}
3030
}

0 commit comments

Comments
 (0)