Skip to content

Commit

Permalink
[ML4SE-241] doNotActivateOnStart added to toolwindow. Changed ide ver…
Browse files Browse the repository at this point in the history
…sions.
  • Loading branch information
mikrise2 committed Nov 30, 2023
1 parent 198e46f commit 9b4eed5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ pluginRepositoryUrl = https://github.com/JetBrains-Research/tasktracker-3
pluginVersion = 0.0.1

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 222
pluginUntilBuild = 231.*
pluginSinceBuild = 223
pluginUntilBuild = 233.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IC
platformVersion = 2022.2.4
platformVersion = 2023.2.5

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
Expand Down
3 changes: 2 additions & 1 deletion ij-plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<resource-bundle>messages.MyBundle</resource-bundle>

<extensions defaultExtensionNs="com.intellij">
<toolWindow factoryClass="org.jetbrains.research.tasktracker.ui.main.panel.MainPluginPanelFactory"
<toolWindow doNotActivateOnStart="true"
factoryClass="org.jetbrains.research.tasktracker.ui.main.panel.MainPluginPanelFactory"
id="TaskTracker" anchor="right"/>
<postStartupActivity implementation="org.jetbrains.research.tasktracker.activities.InitActivity"/>
<notificationGroup id="tasktracker" displayType="BALLOON"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ class InspectionConfigTest : LightPlatformTestCase() {
}

companion object {
const val DEFAULT_ENABLED_INSPECTION_SIZE = 55
const val DISABLE_SELECTED_ENABLED_INSPECTION_SIZE = 53
const val ADD_SELECTED_ENABLED_INSPECTION_SIZE = 57
const val DEFAULT_ENABLED_INSPECTION_SIZE = 53
const val DISABLE_SELECTED_ENABLED_INSPECTION_SIZE = 51
const val ADD_SELECTED_ENABLED_INSPECTION_SIZE = 55
val enableSelectedTools = listOf("LongLine", "TodoComment")
val disableSelectedTools = listOf("CheckTagEmptyBody", "RegExpRedundantEscape")
val addSelectedTools = listOf("EmptyDirectory", "ProblematicWhitespace")
Expand Down

0 comments on commit 9b4eed5

Please sign in to comment.