mirror of
https://github.com/Darkrock-Studios/hammer-editor.git
synced 2026-08-06 16:13:14 +00:00
- 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.
16 lines
No EOL
287 B
Kotlin
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"))
|
|
} |