Skip to content

Commit

Permalink
2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbraun committed Oct 6, 2023
1 parent 57e3f74 commit 1a8dad4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
2.0.0 (October 6, 2023)
------------------------------
* update minimum required Java version to 17
* require strings sent via the drawing protocol to be UTF-8 encoded
* update JOGL to 2.4.0 (adds support for macOS Ventura)
* move entire build logic to Gradle (use `./gradlew binDir` instead of
the old build script)
* add a build task to generate a macOS application bundle
(`./gradlew macOSApp`)
* support running without a present config file
* make the team color table in the configuration window scrollable
* fix a NullPointerException when stopping the log player
* fix an IndexOutOfBoundsException when the connection ends unexpectedly

1.8.5 (July 2, 2023)
------------------------------
* add timer for penalties in RCSSServer3D 0.7.6
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "org.magmaoffenburg.roboviz"
version = "2.0.0-SNAPSHOT"
version = "2.0.0"
application {
mainClass.set("org.magmaoffenburg.roboviz.MainKt")
applicationDefaultJvmArgs = listOf("--add-exports=java.desktop/sun.awt=ALL-UNNAMED")
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/magmaoffenburg/roboviz/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import java.awt.EventQueue
class Main {
companion object {
const val name = "RoboViz"
const val version = "2.0.0-SNAPSHOT"
const val version = "2.0.0"

var mode = Mode.LIVE
lateinit var config: Config // TODO maybe Config should be a Object
Expand Down

0 comments on commit 1a8dad4

Please sign in to comment.