Skip to content

Commit

Permalink
update plugin id and state name
Browse files Browse the repository at this point in the history
  • Loading branch information
xfcy committed Jun 1, 2021
1 parent 0a380e5 commit 581f44e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>me.xfcy.idea.CopyThePath</id>
<id>me.xfcy.idea.CopyThePathLegacy</id>
<name>Copy The Path</name>
<version>0.0.5</version>
<version>0.0.5l</version>
<vendor email="[email protected]" url="https://www.xfcy.me/">ChenY Wang</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -43,7 +43,7 @@ https://github.com/xfcy/CopyThePath <br>

<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
<projectConfigurable parentId="tools" displayName="CopyThePath" id="tools.ChenY.CopyThePath" instance="me.xfcy.idea.copy_the_path.setting.SettingConfigurable" />
<projectConfigurable parentId="tools" displayName="CopyThePathLegacy" id="tools.ChenY.CopyThePathLegacy" instance="me.xfcy.idea.copy_the_path.setting.SettingConfigurable" />
<projectService serviceImplementation="me.xfcy.idea.copy_the_path.setting.SettingState" />
</extensions>

Expand Down
2 changes: 1 addition & 1 deletion src/me/xfcy/idea/copy_the_path/setting/SettingState.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.intellij.openapi.project.Project
import com.intellij.util.xmlb.XmlSerializerUtil

@State(
name = "CopyThePathConfig",
name = "CopyThePathLegacyConfig",
storages = [Storage(StoragePathMacros.WORKSPACE_FILE)]
)
class SettingState(var pathPrefix: String? = ""): PersistentStateComponent<SettingState> {
Expand Down

0 comments on commit 581f44e

Please sign in to comment.