hammer-editor/buildSrc/build.gradle.kts
Adam Brown 77e553cb3b
Polish the prepareForRelease dialog
- Switch to FlatLaf (Darcula) for an IntelliJ-grade look and feel.
  Lives in buildSrc only — never ships in the released app.
- Restructure the dialog into TitledBorder sections: Version,
  Publish scope, Will push tag, Changelog.
- Replace the always-on checkbox grid with an All / Targeted scope
  toggle. Full release (the common case) is now one click and shows
  the bare vX.Y.Z tag; Targeted enables the per-store checkboxes.
- Make the computed tag the dialog's focal point — large monospaced
  bold, italic + dimmed when no platforms are picked.
- Right-align Commit button, live-update window title to show the
  version transition, bump frame size for more changelog room.
2026-05-24 01:17:19 -07:00

16 lines
No EOL
287 B
Kotlin

plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
//implementation(libs.markdown)
implementation(libs.kotlinx.datetime)
// for the prepareForRelease dialog.
implementation(libs.flatlaf)
testImplementation(kotlin("test"))
}