Skip to content

Commit c3e2b22

Browse files
committed
2.0.1 release
1 parent f5d4598 commit c3e2b22

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.0.1 (April 17, 2025)
2+
------------------------------
3+
* add support for reading log files with a .tgz or .tbz2 suffix
4+
* fix reading logs from zip files
5+
* fix "Step back" and "Step forward" buttons in the log player
6+
17
2.0.0 (October 6, 2023)
28
------------------------------
39
* update minimum required Java version to 17

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = "org.magmaoffenburg.roboviz"
13-
version = "2.0.0"
13+
version = "2.0.1"
1414
application {
1515
mainClass.set("org.magmaoffenburg.roboviz.MainKt")
1616
applicationDefaultJvmArgs = listOf("--add-exports=java.desktop/sun.awt=ALL-UNNAMED")

macos/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<key>NSHighResolutionCapable</key>
2626
<false/>
2727
<key>NSHumanReadableCopyright</key>
28-
<string>Copyright 2011-2023 The RoboViz authors</string>
28+
<string>Copyright 2011-2025 The RoboViz authors</string>
2929
<key>NSPrincipalClass</key>
3030
<string>NSApplication</string>
3131
</dict>

src/main/kotlin/org/magmaoffenburg/roboviz/Main.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import java.awt.EventQueue
1313
class Main {
1414
companion object {
1515
const val name = "RoboViz"
16-
const val version = "2.0.0"
16+
const val version = "2.0.1"
1717

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

0 commit comments

Comments
 (0)