chore: rename plugin ID and project name to jetbrains-claude-code-gui

- Update group ID in build.gradle to com.github.jetbrains-claude-code-gui
- Rename root project in settings.gradle to jetbrains-claude-code-gui
- Update plugin ID in plugin.xml to com.github.jetbrains-claude-code-gui
- Rename plugin display name from "CC GUI(Claude and Codex)" to "Claude Code GUI"
- Update fallback plugin ID in PlatformUtils.java
This commit is contained in:
zkpaiminmin
2026-03-19 19:18:35 +08:00
parent 59737ad5c0
commit fc85c99741
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ checkstyle {
configFile = file('checkstyle.xml')
}
group = 'com.github.jetbrains-long-gui'
group = 'com.github.jetbrains-claude-code-gui'
version = '0.3-fix'
java {
+1 -1
View File
@@ -6,4 +6,4 @@ pluginManagement {
}
}
rootProject.name = 'jetbrains-long-gui'
rootProject.name = 'jetbrains-claude-code-gui'
@@ -117,10 +117,10 @@ public class PlatformUtils {
// If no matching plugin found, use fallback value
LOG.warn("Failed to detect plugin ID: no matching plugin found");
cachedPluginId = "com.github.jetbrains-long-gui"; // fallback value
cachedPluginId = "com.github.jetbrains-claude-code-gui"; // fallback value
} catch (Exception e) {
LOG.warn("Failed to detect plugin ID: " + e.getMessage());
cachedPluginId = "com.github.jetbrains-long-gui"; // fallback value
cachedPluginId = "com.github.jetbrains-claude-code-gui"; // fallback value
}
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
<idea-plugin>
<id>com.github.jetbrains-long-gui</id>
<name>CC GUIClaude and Codex</name>
<id>com.github.jetbrains-claude-code-gui</id>
<name>Claude Code GUI</name>
<vendor>Jordan</vendor>
<!-- Resource bundle for i18n -->