mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
[code samples] plugin.xml files cleanup
This commit is contained in:
parent
51f8197af9
commit
834e9b15c6
@ -1,6 +1,7 @@
|
|||||||
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
|
|
||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.intellij.sdk.action</id>
|
<id>org.intellij.sdk.action</id>
|
||||||
|
|
||||||
@ -74,4 +75,4 @@
|
|||||||
</group>
|
</group>
|
||||||
</actions>
|
</actions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
|
|
||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.intelliJ.sdk.codeInspection</id>
|
<id>org.intelliJ.sdk.codeInspection</id>
|
||||||
|
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
|
|
||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.intellij.sdk.intention</id>
|
<id>org.intellij.sdk.intention</id>
|
||||||
|
|
||||||
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK Conditional Operator Converter</name>
|
<name>SDK: Conditional Operator Converter</name>
|
||||||
|
|
||||||
<!-- The version of this plugin -->
|
<!-- The version of this plugin -->
|
||||||
<version>2.0.0</version>
|
<version>2.0.0</version>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.intellij.sdk.editor</id>
|
<id>org.intellij.sdk.editor</id>
|
||||||
|
|
||||||
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK: Editor Sample Project</name>
|
<name>SDK: Editor Sample Project</name>
|
||||||
|
|
||||||
<!-- The version of this plugin -->
|
<!-- The version of this plugin -->
|
||||||
@ -65,4 +65,4 @@
|
|||||||
<typedHandler implementation="org.intellij.sdk.editor.MyTypedHandler"/>
|
<typedHandler implementation="org.intellij.sdk.editor.MyTypedHandler"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -8,6 +8,15 @@
|
|||||||
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK: Facet Basics</name>
|
<name>SDK: Facet Basics</name>
|
||||||
|
|
||||||
|
<!-- The version of this plugin -->
|
||||||
|
<version>2.1</version>
|
||||||
|
|
||||||
|
<!-- Compatible with the following versions of IntelliJ Platform -->
|
||||||
|
<idea-version since-build="191"/>
|
||||||
|
|
||||||
|
<!-- Product and plugin compatibility requirements -->
|
||||||
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
@ -25,18 +34,9 @@
|
|||||||
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
||||||
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
||||||
|
|
||||||
<!-- The version of this plugin -->
|
|
||||||
<version>2.1</version>
|
|
||||||
|
|
||||||
<!-- Compatible with the following versions of IntelliJ Platform -->
|
|
||||||
<idea-version since-build="191"/>
|
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
|
||||||
<depends>com.intellij.modules.lang</depends>
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<!-- Register the custom facet extension -->
|
<!-- Register the custom facet extension -->
|
||||||
<facetType implementation="org.intellij.sdk.facet.DemoFacetType"/>
|
<facetType implementation="org.intellij.sdk.facet.DemoFacetType"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -40,4 +40,4 @@
|
|||||||
<framework.type implementation="org.intellij.sdk.framework.DemoFramework"/>
|
<framework.type implementation="org.intellij.sdk.framework.DemoFramework"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
|
|
||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.intellij.sdk.inspection</id>
|
<id>org.intellij.sdk.inspection</id>
|
||||||
|
|
||||||
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK: Inspection Sample Project</name>
|
<name>SDK: Inspection Sample Project</name>
|
||||||
|
|
||||||
<!-- The version of this plugin -->
|
<!-- The version of this plugin -->
|
||||||
@ -19,7 +21,7 @@
|
|||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
Basic example of working with code inspections. Adds entry to <b>Preferences | Editor | Inspections | SDK | Example Tools</b>.
|
Basic example of working with code inspections. Adds entry to <b>Preferences | Editor | Inspections | SDK | Example Tools</b>.
|
||||||
]]>
|
]]>
|
||||||
</description>
|
</description>
|
||||||
<change-notes>
|
<change-notes>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
@ -31,7 +33,7 @@
|
|||||||
]]>
|
]]>
|
||||||
</change-notes>
|
</change-notes>
|
||||||
|
|
||||||
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
||||||
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
@ -64,4 +66,4 @@
|
|||||||
level="WARNING"
|
level="WARNING"
|
||||||
implementationClass="org.intellij.sdk.inspection.DemoCodeInspection"/>
|
implementationClass="org.intellij.sdk.inspection.DemoCodeInspection"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -1,30 +1,28 @@
|
|||||||
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
|
|
||||||
<!-- Unique identifier of the plugin. Cannot be changed between the plugin versions. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.intellij.sdk.kotlin</id>
|
<id>org.intellij.sdk.kotlin</id>
|
||||||
|
|
||||||
<!-- Plugin name -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK: Kotlin Demo</name>
|
<name>SDK: Kotlin Demo</name>
|
||||||
|
|
||||||
<!-- Plugin version, in MAJOR.MINOR.FIX format -->
|
<!-- The version of this plugin -->
|
||||||
<version>2.0.0</version>
|
<version>2.0.0</version>
|
||||||
|
|
||||||
<!-- Minimum and maximum build numbers of IDEA compatible with the plugin. -->
|
<!-- Minimum and maximum build numbers of IDEA compatible with the plugin. -->
|
||||||
<idea-version since-build="191.0"/>
|
<idea-version since-build="191.0"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements - uses action system and kotlin -->
|
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.platform</depends>
|
||||||
|
|
||||||
<!-- Description of the plugin. Displayed in the "Plugins" settings dialog and in the
|
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
||||||
plugin repository Web interface. -->
|
|
||||||
<description>
|
<description>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
Adds a <i>Greeting</i> menu group anchored last in the <b>Main Menu</b>
|
Adds a <i>Greeting</i> menu group anchored last in the <b>Main Menu</b>
|
||||||
]]>
|
]]>
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<!-- Description of changes in each version of the plugin. -->
|
|
||||||
<change-notes>
|
<change-notes>
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<ul>
|
<ul>
|
||||||
@ -34,10 +32,7 @@
|
|||||||
]]>
|
]]>
|
||||||
</change-notes>
|
</change-notes>
|
||||||
|
|
||||||
<!-- The vendor of the plugin.
|
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
||||||
The optional "url" attribute specifies the URL of the vendor homepage.
|
|
||||||
The optional "email" attribute specifies the e-mail address of the vendor.
|
|
||||||
-->
|
|
||||||
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
|
@ -5,9 +5,16 @@
|
|||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.intellij.sdk.liveTemplates</id>
|
<id>org.intellij.sdk.liveTemplates</id>
|
||||||
|
|
||||||
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK: Live Templates Sample Project</name>
|
<name>SDK: Live Templates Sample Project</name>
|
||||||
|
|
||||||
|
<!-- The version of this plugin -->
|
||||||
|
<version>2.0.0</version>
|
||||||
|
|
||||||
|
<!-- Compatible with the following versions of IntelliJ Platform:
|
||||||
|
version 2018.3 (build #183) and newer. -->
|
||||||
|
<idea-version since-build="191"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
@ -36,4 +43,4 @@
|
|||||||
<liveTemplateMacro implementation="org.intellij.sdk.liveTemplates.TitleCaseMacro"/>
|
<liveTemplateMacro implementation="org.intellij.sdk.liveTemplates.TitleCaseMacro"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -42,4 +42,4 @@
|
|||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<applicationService serviceImplementation="org.intellij.sdk.maxOpenProjects.ProjectCountingService"/>
|
<applicationService serviceImplementation="org.intellij.sdk.maxOpenProjects.ProjectCountingService"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -39,4 +39,4 @@
|
|||||||
<moduleType id="DEMO_MODULE_TYPE" implementationClass="org.intellij.sdk.module.DemoModuleType"/>
|
<moduleType id="DEMO_MODULE_TYPE" implementationClass="org.intellij.sdk.module.DemoModuleType"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -43,4 +43,4 @@
|
|||||||
</group>
|
</group>
|
||||||
</actions>
|
</actions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -68,4 +68,5 @@
|
|||||||
<add-to-group group-id="EditorPopupMenu" anchor="last"/>
|
<add-to-group group-id="EditorPopupMenu" anchor="last"/>
|
||||||
</action>
|
</action>
|
||||||
</actions>
|
</actions>
|
||||||
</idea-plugin>
|
|
||||||
|
</idea-plugin>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin url="www.jetbrains.com">
|
<idea-plugin>
|
||||||
|
|
||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.jetbrains.plugins.sample.ProjectViewPane</id>
|
<id>org.jetbrains.plugins.sample.ProjectViewPane</id>
|
||||||
@ -39,4 +39,4 @@
|
|||||||
<projectViewPane implementation="org.intellij.sdk.view.pane.ImagesProjectViewPane"/>
|
<projectViewPane implementation="org.intellij.sdk.view.pane.ImagesProjectViewPane"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>org.jetbrains.tutorials.ProjectWizard</id>
|
<id>org.jetbrains.tutorials.ProjectWizard</id>
|
||||||
|
|
||||||
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK: Project Wizard Demo</name>
|
<name>SDK: Project Wizard Demo</name>
|
||||||
|
|
||||||
<!-- The version of this plugin -->
|
<!-- The version of this plugin -->
|
||||||
@ -41,4 +41,4 @@
|
|||||||
order="first"/>
|
order="first"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
// Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||||
|
|
||||||
package org.jetbrains.sdk.psi;
|
package org.intellij.sdk.psi;
|
||||||
|
|
||||||
import com.intellij.openapi.actionSystem.AnAction;
|
import com.intellij.openapi.actionSystem.AnAction;
|
||||||
import com.intellij.openapi.actionSystem.AnActionEvent;
|
import com.intellij.openapi.actionSystem.AnActionEvent;
|
@ -36,7 +36,7 @@
|
|||||||
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<action class="org.jetbrains.sdk.psi.PsiNavigationDemoAction" id="PsiNavigationDemo"
|
<action class="org.intellij.sdk.psi.PsiNavigationDemoAction" id="PsiNavigationDemo"
|
||||||
text="PSI Navigation Demo...">
|
text="PSI Navigation Demo...">
|
||||||
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
||||||
</action>
|
</action>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<id>org.intellij.sdk.runConfiguration</id>
|
<id>org.intellij.sdk.runConfiguration</id>
|
||||||
|
|
||||||
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>Run Configuration Demo</name>
|
<name>SDK: Run Configuration Demo</name>
|
||||||
|
|
||||||
<!-- The version of this plugin -->
|
<!-- The version of this plugin -->
|
||||||
<version>2.0.0</version>
|
<version>2.0.0</version>
|
||||||
|
@ -1,34 +1,42 @@
|
|||||||
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
<id>com.jetbrains.sdk.themeBasics</id>
|
|
||||||
<name>SDK Theme Basics</name>
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
|
<id>org.intellij.sdk..themeBasics</id>
|
||||||
|
|
||||||
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
|
<name>SDK: Theme Basics</name>
|
||||||
|
|
||||||
|
<!-- The version of this plugin -->
|
||||||
<version>0.1</version>
|
<version>0.1</version>
|
||||||
<vendor email="support-email@company.com" url="https://blog.jetbrains.com/platform/">JetBrains Plugin Platform SDK</vendor>
|
|
||||||
|
|
||||||
<description><![CDATA[
|
<!-- Compatible with the following versions of IntelliJ Platform:
|
||||||
IntelliJ Platform SDK code sample to illustrate creating <em>UI Themes</em>.
|
version 2018.3 (build #183) and newer. -->
|
||||||
]]></description>
|
|
||||||
|
|
||||||
<change-notes><![CDATA[
|
|
||||||
<ul>
|
|
||||||
<li>0.1 Initial release. Basic theme functionality.</li>
|
|
||||||
</ul>
|
|
||||||
]]></change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="191"/>
|
<idea-version since-build="191"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.platform</depends>
|
||||||
|
|
||||||
|
<description>
|
||||||
|
<![CDATA[
|
||||||
|
IntelliJ Platform SDK code sample to illustrate creating <em>UI Themes</em>.
|
||||||
|
]]>
|
||||||
|
</description>
|
||||||
|
<change-notes>
|
||||||
|
<![CDATA[
|
||||||
|
<ul>
|
||||||
|
<li><b>0.1</b> Initial release. Basic theme functionality.</li>
|
||||||
|
</ul>
|
||||||
|
]]>
|
||||||
|
</change-notes>
|
||||||
|
|
||||||
|
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
||||||
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<!-- Add your extensions here -->
|
<!-- Add your extensions here -->
|
||||||
<themeProvider id="eb9b7461-397b-4b98-a422-224fc0a74564" path="/theme_basics.theme.json"/>
|
<themeProvider id="eb9b7461-397b-4b98-a422-224fc0a74564" path="/theme_basics.theme.json"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<actions>
|
</idea-plugin>
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
<!-- Compatible with the following versions of IntelliJ Platform -->
|
<!-- Compatible with the following versions of IntelliJ Platform -->
|
||||||
<idea-version since-build="193.3"/>
|
<idea-version since-build="193.3"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.platform</depends>
|
||||||
|
|
||||||
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
<!-- Compatible with the following versions of IntelliJ Platform -->
|
<!-- Compatible with the following versions of IntelliJ Platform -->
|
||||||
<idea-version since-build="193.3"/>
|
<idea-version since-build="193.3"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.platform</depends>
|
||||||
|
|
||||||
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user