Skip to content

Commit

Permalink
release: 22.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xeruf committed Jul 26, 2021
1 parent c14f1e8 commit 4729838
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,12 @@ for details on our versioning scheme.

## [22.1.0](https://github.com/software-challenge/gui/commits/22.1.0) - 2021-09

## [22.0.3](https://github.com/software-challenge/gui/commits/22.0.3) - 2021-07-26
- Fix annoying error when striking a figure in a human vs human match
- Improve navigation & status display
- Smoothen board interaction
- Expand logging for beta version

## [22.0.2](https://github.com/software-challenge/gui/commits/22.0.2) - 2021-07-16
- Fix help links & add little usage guide
- Polish game interface
Expand Down
9 changes: 4 additions & 5 deletions build.gradle.kts
Expand Up @@ -34,9 +34,8 @@ version = try {
println("Current version: $version (Java version: ${JavaVersion.current()})")

application {
mainClassName = "sc.gui.GuiAppKt" // not migrating from legacy because of https://github.com/johnrengelman/shadow/issues/609 - waiting for 6.2 release
// these are required because of using JDK >8,
// see https://github.com/controlsfx/controlsfx/wiki/Using-ControlsFX-with-JDK-9-and-above
mainClassName = "sc.gui.GuiAppKt" // needs shadow-update which needs gradle update to 7.0
// these are required for Java since Jigsaw, see https://github.com/controlsfx/controlsfx/wiki/Using-ControlsFX-with-JDK-9-and-above
applicationDefaultJvmArgs = listOf(
// For accessing VirtualFlow field from the base class in GridViewSkin
"--add-opens=javafx.controls/javafx.scene.control.skin=ALL-UNNAMED",
Expand Down Expand Up @@ -105,13 +104,13 @@ tasks {
}

val release by creating {
dependsOn(check)
dependsOn(clean, check)
group = "distribution"
description = "Creates and pushes a tagged commit according to the backend version"
doLast {
val desc = project.properties["m"]?.toString()
?: throw InvalidUserDataException("Das Argument -Pm=\"Beschreibung dieser Version\" wird benötigt")
exec { commandLine("git", "commit", "-a", "-m", "release: $versionFromBackend") }
exec { commandLine("git", "commit", "-m", "release: $versionFromBackend") }
exec { commandLine("git", "tag", versionFromBackend, "-m", desc) }
exec { commandLine("git", "push", "--follow-tags") }
}
Expand Down

0 comments on commit 4729838

Please sign in to comment.