Files
openide/plugins/changeReminder/resources/META-INF/plugin.xml
Aleksey Pivovarov 88c8846a96 IDEA-349862 [change-reminder] remove FUS collectors
Follow-up: ce69225691d9c6a7ef09dcf52c2c0b84f517468c

GitOrigin-RevId: 5052ca875f3d8d0967362d1cbb9bf2198b9e60a1
2024-03-25 14:50:41 +00:00

37 lines
1.8 KiB
XML

<idea-plugin>
<id>com.jetbrains.changeReminder</id>
<name>ChangeReminder</name>
<vendor>JetBrains</vendor>
<category>Version Controls</category>
<description><![CDATA[Predicts files that you may have forgotten to modify based on the commit history.
<ul><li>Supports Git</li>
<li>Checks which files are often committed together with those you currently have in your active changelist</li>
<li>Suggests files that may be related to those you already modified</li></ul>
Suggested files are listed as <b>People who change the files in the active changelist also change</b> in the <b>Local Changes</b> tab of the <b>Version Control</b> tool window.
]]></description>
<depends>com.intellij.modules.vcs</depends>
<depends>Git4Idea</depends>
<actions>
<action id="ChangesView.ViewOptions.ShowRelatedFiles"
class="com.jetbrains.changeReminder.changes.ChangeReminderCheckAction"
icon="AllIcons.Actions.ToggleVisibility">
<add-to-group group-id="ChangesView.ViewOptions"/>
</action>
</actions>
<extensions defaultExtensionNs="com.intellij">
<registryKey key="vcs.changeReminder.prediction.threshold"
defaultValue="0.8"
description="Do not show files which have probability less than threshold in Related Files node in Local Changes."/>
<registryKey key="vcs.changeReminder.changes.limit"
defaultValue="25"
description="A maximum number of changes for which predictions are calculated"/>
<applicationService serviceImplementation="com.jetbrains.changeReminder.plugin.UserSettings"/>
<vcs.changes.changesViewModifier implementation="com.jetbrains.changeReminder.changes.ChangeReminderChangesViewModifier"/>
</extensions>
<resource-bundle>messages.ChangeReminderBundle</resource-bundle>
</idea-plugin>