File tree 4 files changed +9
-3
lines changed
src/main/kotlin/org/magmaoffenburg/roboviz
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
7
2.0.0 (October 6, 2023)
2
8
------------------------------
3
9
* update minimum required Java version to 17
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ plugins {
10
10
}
11
11
12
12
group = " org.magmaoffenburg.roboviz"
13
- version = " 2.0.0 "
13
+ version = " 2.0.1 "
14
14
application {
15
15
mainClass.set(" org.magmaoffenburg.roboviz.MainKt" )
16
16
applicationDefaultJvmArgs = listOf (" --add-exports=java.desktop/sun.awt=ALL-UNNAMED" )
Original file line number Diff line number Diff line change 25
25
<key >NSHighResolutionCapable </key >
26
26
<false />
27
27
<key >NSHumanReadableCopyright </key >
28
- <string >Copyright 2011-2023 The RoboViz authors </string >
28
+ <string >Copyright 2011-2025 The RoboViz authors </string >
29
29
<key >NSPrincipalClass </key >
30
30
<string >NSApplication </string >
31
31
</dict >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import java.awt.EventQueue
13
13
class Main {
14
14
companion object {
15
15
const val name = " RoboViz"
16
- const val version = " 2.0.0 "
16
+ const val version = " 2.0.1 "
17
17
18
18
var mode = Mode .LIVE
19
19
lateinit var config: Config // TODO maybe Config should be a Object
You can’t perform that action at this time.
0 commit comments