diff --git a/plugin-playground/src/main/kotlin/KondoKit/ReflectiveEditorView.kt b/plugin-playground/src/main/kotlin/KondoKit/ReflectiveEditorView.kt index 4548444..e6f7bf0 100644 --- a/plugin-playground/src/main/kotlin/KondoKit/ReflectiveEditorView.kt +++ b/plugin-playground/src/main/kotlin/KondoKit/ReflectiveEditorView.kt @@ -155,7 +155,7 @@ object ReflectiveEditorView { // Plugin name and version (using package name as in original implementation) val packageName = plugin.javaClass.`package`.name - val nameLabel = JLabel("$packageName v${pluginInfo.version}") + val nameLabel = JLabel("$packageName") nameLabel.foreground = secondaryColor nameLabel.font = Font("RuneScape Small", Font.PLAIN, 16) @@ -266,7 +266,7 @@ object ReflectiveEditorView { } val packageName = plugin.javaClass.`package`.name - val titleLabel = JLabel("$packageName") + val titleLabel = JLabel("$packageName v${pluginInfo.version}") titleLabel.foreground = secondaryColor titleLabel.font = Font("RuneScape Small", Font.PLAIN, 16) titleLabel.horizontalAlignment = SwingConstants.CENTER