Karol Lewandowski f5db8ea180 Settings tutorial: Change the implementation to follow the recommended approach (a separate state class)
Also:
- remove unnecessary screenshot
- change labels to follow UX guidelines
2024-06-20 12:42:04 +02:00

41 lines
1.5 KiB
XML

<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<idea-plugin>
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.settings</id>
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Settings Example</name>
<!-- please see https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html
on how to target different products -->
<depends>com.intellij.modules.platform</depends>
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates implementing a custom settings panel.<br>Adds a settings panel to the <b>Settings</b>
panel under <b>Tools</b>.
]]>
</description>
<change-notes>
<![CDATA[
<ul>
<li><b>1.0</b> Initial SDK settings content release for 2020.1</li>
</ul>
]]>
</change-notes>
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
<extensions defaultExtensionNs="com.intellij">
<applicationConfigurable parentId="tools" instance="org.intellij.sdk.settings.AppSettingsConfigurable"
id="org.intellij.sdk.settings.AppSettingsConfigurable"
displayName="SDK: Application Settings Example"/>
<applicationService serviceImplementation="org.intellij.sdk.settings.AppSettings"/>
</extensions>
</idea-plugin>