@@ -4,6 +4,7 @@ import be.ugent.topl.mio.DebuggerConfig
44import com.formdev.flatlaf.FlatDarkLaf
55import com.formdev.flatlaf.FlatIntelliJLaf
66import com.formdev.flatlaf.FlatLaf
7+ import com.formdev.flatlaf.extras.FlatSVGIcon
78import com.formdev.flatlaf.themes.FlatMacDarkLaf
89import com.formdev.flatlaf.themes.FlatMacLightLaf
910import com.formdev.flatlaf.util.SystemInfo
@@ -22,10 +23,10 @@ open class AboutScreen(protected val config: DebuggerConfig) : JFrame() {
2223 mainPanel.setLayout(BoxLayout (mainPanel, BoxLayout .Y_AXIS ))
2324 mainPanel.border = BorderFactory .createEmptyBorder(20 , 20 , 20 , 20 )
2425 mainPanel.add(Box .createVerticalGlue())
25- mainPanel.add(JLabel (ImageIcon ( ImageIcon ( this .javaClass.getResource (" /warduino-logo.png " )).image.getScaledInstance( 100 , 100 , Image . SCALE_SMOOTH ))).apply {
26+ mainPanel.add(JLabel (FlatSVGIcon ( this .javaClass.getResourceAsStream (" /rCMD_Logo.svg " ))).apply {
2627 setAlignmentX(CENTER_ALIGNMENT )
2728 })
28- mainPanel.add(JLabel (" MIO Debugger" ).apply {
29+ mainPanel.add(JLabel (" rCMD Debugger" ).apply {
2930 setAlignmentX(CENTER_ALIGNMENT )
3031 putClientProperty( " FlatLaf.style" , " font: 250% \$ semibold.font" )
3132 })
@@ -39,7 +40,7 @@ open class AboutScreen(protected val config: DebuggerConfig) : JFrame() {
3940 }
4041
4142 protected open fun addOptions (mainPanel : JPanel ) {
42- mainPanel.add(JLabel (" Copyright © 2023-2025 TOPL@Ghent University" ).apply {
43+ mainPanel.add(JLabel (" Copyright © 2023-2026 TOPL@Ghent University" ).apply {
4344 setAlignmentX(CENTER_ALIGNMENT )
4445 })
4546 }
0 commit comments