mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
32 lines
1.0 KiB
XML
32 lines
1.0 KiB
XML
<idea-plugin>
|
|
<id>com.jetbrains.sdk.themeBasics</id>
|
|
<name>SDK Theme Basics</name>
|
|
<version>0.1</version>
|
|
<vendor email="support-email@company.com" url="https://blog.jetbrains.com/platform/">JetBrains Plugin Platform SDK</vendor>
|
|
|
|
<description><![CDATA[
|
|
IntelliJ Platform SDK code sample to illustrate creating <em>UI Themes</em>.
|
|
]]></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"/>
|
|
|
|
<!-- Product and plugin compatibility requirements -->
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<!-- Add your extensions here -->
|
|
<themeProvider id="eb9b7461-397b-4b98-a422-224fc0a74564" path="/theme_basics.theme.json"/>
|
|
</extensions>
|
|
|
|
<actions>
|
|
<!-- Add your actions here -->
|
|
</actions>
|
|
|
|
</idea-plugin> |