diff --git a/LICENSE b/LICENSE index 3825d22..e62bee0 100644 --- a/LICENSE +++ b/LICENSE @@ -631,7 +631,7 @@ to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - RS09 Thanos Tool + Zaros Copyright (C) 2021 2009Scape This program is free software: you can redistribute it and/or modify @@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - Copyright (C) 2021 2009Scape + Zaros Copyright (C) 2021 2009Scape This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. diff --git a/README.md b/README.md index c8736ce..e57c50f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![pipeline status](https://gitlab.com/2009scape/rs09-thanos-tool/badges/master/pipeline.svg)](https://gitlab.com/2009scape/rs09-thanos-tool/-/commits/master) -**The RS09 Thanos Tool : All-in-one JSON editing** +**Zaros : All-in-one JSON editing** This tool is capable of modifying every JSON file you're likely to need to modify inside of the 2009scape codebase. diff --git a/settings.gradle b/settings.gradle index d59ae17..e155624 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,2 @@ -rootProject.name = 'rs09-thanos-tool' +rootProject.name = 'zaros' diff --git a/src/main/kotlin/EditorConstants.kt b/src/main/kotlin/EditorConstants.kt index 20be945..1b21830 100644 --- a/src/main/kotlin/EditorConstants.kt +++ b/src/main/kotlin/EditorConstants.kt @@ -4,7 +4,7 @@ import javax.swing.* import java.awt.event.* object EditorConstants { - var BUILD_NUMBER = "1.5.3" + var BUILD_NUMBER = "2.0.1" var DARK_MODE = true diff --git a/src/main/kotlin/MainScreen.kt b/src/main/kotlin/MainScreen.kt index ca71c15..34b47c3 100644 --- a/src/main/kotlin/MainScreen.kt +++ b/src/main/kotlin/MainScreen.kt @@ -12,7 +12,7 @@ import cacheops.cache.definition.decoder.FloorUnderlayConfiguration import cacheops.cache.definition.decoder.FloorOverlayConfiguration import cacheops.cache.definition.decoder.MapTileParser -object MainScreen : JFrame("RS09 Thanos Tool ${EditorConstants.BUILD_NUMBER}") { +object MainScreen : JFrame("Zaros ${EditorConstants.BUILD_NUMBER}") { val dirChooser = object : JFileChooser(DataStore.LastConfigPath){ override fun updateUI() { EditorConstants.updateTheme() @@ -46,7 +46,7 @@ object MainScreen : JFrame("RS09 Thanos Tool ${EditorConstants.BUILD_NUMBER}") { preferredSize = Dimension(550,300) loadedModel.addColumn("Filename") - iconImage = ImageIcon(javaClass.getResource("/thanos.png")).image + iconImage = ImageIcon(javaClass.getResource("/zaros.png")).image selectDir.addActionListener { diff --git a/src/main/resources/thanos.png b/src/main/resources/thanos.png deleted file mode 100644 index bab94d6..0000000 Binary files a/src/main/resources/thanos.png and /dev/null differ diff --git a/src/main/resources/zaros.png b/src/main/resources/zaros.png new file mode 100644 index 0000000..579ce35 Binary files /dev/null and b/src/main/resources/zaros.png differ