Skip to content

Commit 6a7fcd5

Browse files
committed
Brand project as rCMD
1 parent 908243d commit 6a7fcd5

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ application {
5454

5555

5656
tasks.register<Jar>("fatJar") {
57-
archiveFileName.set("mio.jar")
57+
archiveFileName.set("rcmd.jar")
5858

5959
from(sourceSets.main.get().output)
6060

@@ -107,7 +107,7 @@ tasks.register<Copy>("setup") {
107107
setDefaultZephyrWasmBinary()
108108

109109
// Setup configuration file.
110-
val file = File("${System.getenv("HOME")}/.mio/debugger.properties")
110+
val file = File("${System.getenv("HOME")}/.rcmd/debugger.properties")
111111
if (!file.exists()) {
112112
writeDefaultConfig(file)
113113
} else {

src/main/kotlin/be/ugent/topl/mio/DebuggerConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import java.util.*
66
class DebuggerConfig {
77
private val properties = Properties()
88
companion object {
9-
val configDir = "${System.getenv("HOME")}/.mio"
9+
val configDir = "${System.getenv("HOME")}/.rcmd"
1010
}
1111
init {
1212
properties.load(FileInputStream("$configDir/debugger.properties"))

src/main/kotlin/be/ugent/topl/mio/Main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fun main(args: Array<String>) {
3737
val config = DebuggerConfig()
3838
if (SystemInfo.isMacOS) {
3939
System.setProperty("apple.laf.useScreenMenuBar", "true")
40-
System.setProperty("apple.awt.application.name", "MIO")
40+
System.setProperty("apple.awt.application.name", "rCMD")
4141
System.setProperty("apple.awt.application.appearance", if (config.lightMode) "NSAppearanceNameAqua" else "NSAppearanceNameDarkAqua")
4242
}
4343
else {

src/main/kotlin/be/ugent/topl/mio/ui/AboutScreen.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ open class AboutScreen(protected val config: DebuggerConfig) : JFrame() {
2525
mainPanel.add(JLabel(ImageIcon(ImageIcon(this.javaClass.getResource("/warduino-logo.png")).image.getScaledInstance(100, 100, Image.SCALE_SMOOTH))).apply {
2626
setAlignmentX(CENTER_ALIGNMENT)
2727
})
28-
mainPanel.add(JLabel("MIO Debugger").apply {
28+
mainPanel.add(JLabel("rCMD Debugger").apply {
2929
setAlignmentX(CENTER_ALIGNMENT)
3030
putClientProperty( "FlatLaf.style", "font: 250% \$semibold.font")
3131
})
@@ -39,7 +39,7 @@ open class AboutScreen(protected val config: DebuggerConfig) : JFrame() {
3939
}
4040

4141
protected open fun addOptions(mainPanel: JPanel) {
42-
mainPanel.add(JLabel("Copyright © 2023-2025 TOPL@Ghent University").apply {
42+
mainPanel.add(JLabel("Copyright © 2023-2026 TOPL@Ghent University").apply {
4343
setAlignmentX(CENTER_ALIGNMENT)
4444
})
4545
}

0 commit comments

Comments
 (0)