forked from ualberta-smr/ExplainMergeConflict
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<idea-plugin url="https://github.com/ualberta-smr/ExplainMergeConflict"> | ||
<id>org.ualberta.smr.explainmergeconflict</id> | ||
<name>ExplainMergeConflict</name> | ||
<vendor | ||
url="https://github.com/ualberta-smr/ExplainMergeConflict">The | ||
Software Maintenance and Reuse (SMR) Lab | ||
</vendor> | ||
<version>2020.1-1.1</version> | ||
|
||
<description><![CDATA[ | ||
]]></description> | ||
|
||
<depends>com.intellij.modules.platform</depends> | ||
<depends>com.intellij.modules.java</depends> | ||
<depends>com.intellij.modules.lang</depends> | ||
<depends>Git4Idea</depends> | ||
|
||
<extensions defaultExtensionNs="com.intellij"> | ||
<projectConfigurable parentId="tools" | ||
instance="org.jetbrains.research.refactorinsight.services.SettingsConfigurable" | ||
id="services.SettingsConfigurable" | ||
displayName="RefactorInsight"/> | ||
|
||
<diff.DiffExtension implementation="org.jetbrains.research.refactorinsight.ui.windows.DiffWindow"/> | ||
|
||
<projectService serviceImplementation="org.jetbrains.research.refactorinsight.services.MiningService"/> | ||
<projectService serviceImplementation="org.jetbrains.research.refactorinsight.services.WindowService"/> | ||
<projectService serviceImplementation="org.jetbrains.research.refactorinsight.services.SettingsState"/> | ||
|
||
<errorHandler implementation="org.jetbrains.research.refactorinsight.reporter.RefactorInsightErrorReporter"/> | ||
|
||
<toolWindow id="Explain Merge Conflict" anchor="right" | ||
factoryClass="org.ualberta.smr.explainmergeconflict.ui.ExplanationsToolWindowFactory"/> | ||
</extensions> | ||
|
||
<actions> | ||
<action id="actions.ToggleRefactoringViewAction" | ||
class="org.jetbrains.research.refactorinsight.actions.ToggleRefactoringViewAction" | ||
icon="RefactorInsightIcons.toggle" | ||
text="Show Refactorings" description="actions.ToggleRefactoringViewAction"> | ||
<add-to-group group-id="Vcs.Log.ChangesBrowser.Toolbar" anchor="first"/> | ||
</action> | ||
|
||
<action id="RefAction" class="org.jetbrains.research.refactorinsight.actions.RefactoringAction" | ||
text="Mine All Refactorings" | ||
description="Clear refactoring cache"> | ||
<add-to-group group-id="ToolsMenu" anchor="first"/> | ||
</action> | ||
|
||
<action id="actions.RefactoringHistoryAction" | ||
class="org.jetbrains.research.refactorinsight.actions.RefactoringHistoryAction" | ||
text="Check Refactoring History" | ||
description="Retrieve refactorings history for this method"> | ||
<add-to-group group-id="EditorPopupMenu1" anchor="first"/> | ||
<keyboard-shortcut first-keystroke="control alt R" keymap="$default"/> | ||
</action> | ||
|
||
<action id="ShowExplanationsToolWindowAction" | ||
class="org.ualberta.smr.explainmergeconflict.actions.ShowExplanationsToolWindowAction" | ||
text="Explain Merge Conflict" | ||
description="Display merge conflict explanations for this file"> | ||
<add-to-group group-id="EditorPopupMenu" anchor="last"/> | ||
</action> | ||
</actions> | ||
|
||
<projectListeners> | ||
<listener class="org.jetbrains.research.refactorinsight.processors.CommitListener" | ||
topic="git4idea.repo.GitRepositoryChangeListener"/> | ||
<listener class="org.jetbrains.research.refactorinsight.processors.ProjectListener" | ||
topic="com.intellij.openapi.project.ProjectManagerListener"/> | ||
</projectListeners> | ||
|
||
</idea-plugin> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version=1.1.2 | ||
name=RefactorInsight | ||
no.ref.history=No refactorings detected for this element. | ||
no.repo=Your project is not connected to VCS. | ||
progress=Mining refactorings %d/%d | ||
mining=Mining refactorings | ||
finished=Mining done | ||
mining.at=Mining commit %s | ||
setting=RefactorInsight | ||
history=Refactoring History | ||
click.to.jump=Double click to jump at commit. | ||
how.many.detected=%d refactoring%s detected for this %s | ||
check.methods=Check methods in this class | ||
check.fields=Check fields in this class | ||
bad.file=File not supported. | ||
label.max.commits=Max commits to mine: | ||
label.max.history=Max commits to compute history for: | ||
label.threads=Number of threads to use for mining: | ||
button.clear=Clear Cache | ||
button.mine=Mine all | ||
button.import=Import xml | ||
change.rename.attribute=Rename and Change Attribute Type | ||
rename.attribute=Rename Attribute | ||
change.attribute=Change Attribute Type | ||
change.rename.var=Rename and Change Variable Type | ||
change.rename.param=Rename and Change Parameter Type |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
out/production/resources/icons/refactorInsightToggle_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
out/production/resources/icons/refactorInsightToolWindow_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.