mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<!-- Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
|
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
|
|
|
|
<idea-plugin>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- Compatible with the following versions of IntelliJ Platform: version 2021.2 and newer. -->
|
|
<idea-version since-build="212"/>
|
|
|
|
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
<description>
|
|
<![CDATA[
|
|
IntelliJ Platform SDK code sample to illustrate creating <em>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">
|
|
<themeProvider id="eb9b7461-397b-4b98-a422-224fc0a74564" path="/theme_basics.theme.json"/>
|
|
</extensions>
|
|
|
|
</idea-plugin>
|