feat: 0.0.1发布

This commit is contained in:
2023-12-29 14:26:25 +08:00
parent 30ec0c2c3f
commit d745aaff9f
8 changed files with 17 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
package com.github.cirry.wxreaderjetbrainsplugin
package com.github.cirry.wereadjetbrainsplugin
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.actionSystem.PlatformDataKeys

View File

@@ -1,4 +1,4 @@
package com.github.cirry.wxreaderjetbrainsplugin
package com.github.cirry.wereadjetbrainsplugin
import com.intellij.DynamicBundle
import org.jetbrains.annotations.NonNls

View File

@@ -1,4 +1,4 @@
package com.github.cirry.wxreaderjetbrainsplugin.listeners
package com.github.cirry.wereadjetbrainsplugin.listeners
import com.intellij.openapi.application.ApplicationActivationListener
import com.intellij.openapi.diagnostic.thisLogger

View File

@@ -1,9 +1,9 @@
package com.github.cirry.wxreaderjetbrainsplugin.services
package com.github.cirry.wereadjetbrainsplugin.services
import com.intellij.openapi.components.Service
import com.intellij.openapi.diagnostic.thisLogger
import com.intellij.openapi.project.Project
import com.github.cirry.wxreaderjetbrainsplugin.MyBundle
import com.github.cirry.wereadjetbrainsplugin.MyBundle
@Service(Service.Level.PROJECT)
class MyProjectService(project: Project) {

View File

@@ -1,6 +1,6 @@
package com.github.cirry.wxreaderjetbrainsplugin.toolWindow
package com.github.cirry.wereadjetbrainsplugin.toolWindow
import com.github.cirry.wxreaderjetbrainsplugin.MyBundle
import com.github.cirry.wereadjetbrainsplugin.MyBundle
import com.intellij.openapi.project.Project
import com.intellij.openapi.wm.ToolWindow
import com.intellij.openapi.wm.ToolWindowFactory

View File

@@ -1,6 +1,6 @@
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<id>com.github.cirry.wxreaderjetbrainsplugin</id>
<id>com.github.cirry.wereadjetbrainsplugin</id>
<name>Weread</name>
@@ -11,11 +11,11 @@
<resource-bundle>messages.MyBundle</resource-bundle>
<extensions defaultExtensionNs="com.intellij">
<toolWindow factoryClass="com.github.cirry.wxreaderjetbrainsplugin.toolWindow.MyToolWindowFactory" icon="/icons/toolWindowIcon.svg" id="WeRead"/>
<toolWindow factoryClass="com.github.cirry.wereadjetbrainsplugin.toolWindow.MyToolWindowFactory" icon="/icons/toolWindowIcon.svg" id="WeRead"/>
</extensions>
<applicationListeners>
<listener class="com.github.cirry.wxreaderjetbrainsplugin.listeners.MyApplicationActivationListener" topic="com.intellij.openapi.application.ApplicationActivationListener"/>
<listener class="com.github.cirry.wereadjetbrainsplugin.listeners.MyApplicationActivationListener" topic="com.intellij.openapi.application.ApplicationActivationListener"/>
</applicationListeners>
<actions>
</actions>

View File

@@ -1,4 +1,4 @@
package com.github.cirry.wxreaderjetbrainsplugin
package com.github.cirry.wereadjetbrainsplugin
import com.intellij.ide.highlighter.XmlFileType
import com.intellij.openapi.components.service
@@ -6,7 +6,7 @@ import com.intellij.psi.xml.XmlFile
import com.intellij.testFramework.TestDataPath
import com.intellij.testFramework.fixtures.BasePlatformTestCase
import com.intellij.util.PsiErrorElementUtil
import com.github.cirry.wxreaderjetbrainsplugin.services.MyProjectService
import com.github.cirry.wereadjetbrainsplugin.services.MyProjectService
@TestDataPath("\$CONTENT_ROOT/src/test/testData")
class MyPluginTest : BasePlatformTestCase() {