diff --git a/CHANGELOG.md b/CHANGELOG.md index 12cdc53..e4325fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.8.2 (July 14, 2022) +------------------------------ +* Assign default team color based on team name + 1.8.1 (April 7, 2022) ------------------------------ * fixed crashing RoboViz due to an invalid regex ([#52](https://github.com/magmaOffenburg/RoboViz/issues/52)) diff --git a/build.gradle b/build.gradle index b45bb77..713014b 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { } group 'org.magmaoffenburg.roboviz' -version '1.8.1' +version '1.8.2' mainClassName = 'org.magmaoffenburg.roboviz.MainKt' ext { diff --git a/src/main/kotlin/org/magmaoffenburg/roboviz/Main.kt b/src/main/kotlin/org/magmaoffenburg/roboviz/Main.kt index e2ab4ad..67deb9f 100644 --- a/src/main/kotlin/org/magmaoffenburg/roboviz/Main.kt +++ b/src/main/kotlin/org/magmaoffenburg/roboviz/Main.kt @@ -13,7 +13,7 @@ import java.awt.EventQueue class Main { companion object { const val name = "RoboViz" - const val version = "1.8.1" + const val version = "1.8.2" var mode = Mode.LIVE lateinit var config: Config // TODO maybe Config should be a Object