Skip to content

Commit 92f8dbf

Browse files
committed
chore: bump ide versions
1 parent 59e6020 commit 92f8dbf

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ projectVersion=0.7.10-SNAPSHOT
1111
pluginSinceBuild=231
1212

1313
platformType=IU
14-
ideVersion=2023.1.4
14+
ideVersion=2023.2.2
1515
platformDownloadSources=true
1616
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1717
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22

insight/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ group = "plus.sourceplus.interface"
1414
version = project.properties["projectVersion"] as String? ?: projectVersion
1515

1616
intellij {
17-
plugins.set(listOf("java", "Groovy", "Kotlin", "org.intellij.scala:2023.1.7", "JavaScript", "Pythonid:231.9225.16", "intellij.grid.impl"))
17+
plugins.set(listOf("java", "Groovy", "Kotlin", "org.intellij.scala:2023.2.23", "JavaScript", "Pythonid:232.8660.185", "intellij.grid.impl"))
1818
}
1919

2020
val sourcesJar = tasks.register<Jar>("sourcesJar") {

marker/jvm-marker/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ group = "plus.sourceplus.interface"
1414
version = project.properties["projectVersion"] as String? ?: projectVersion
1515

1616
intellij {
17-
plugins.set(listOf("java", "Groovy", "Kotlin", "org.intellij.scala:2023.1.7"))
17+
plugins.set(listOf("java", "Groovy", "Kotlin", "org.intellij.scala:2023.2.23"))
1818
}
1919

2020
val sourcesJar = tasks.register<Jar>("sourcesJar") {

marker/py-marker/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ version = project.properties["projectVersion"] as String? ?: projectVersion
1414

1515
intellij {
1616
type.set("IC")
17-
plugins.set(listOf("PythonCore:231.9225.4"))
17+
plugins.set(listOf("PythonCore:232.8660.185"))
1818
}
1919

2020
val sourcesJar = tasks.register<Jar>("sourcesJar") {

plugin/src/main/kotlin/spp/jetbrains/sourcemarker/view/action/ChangeChartAction.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ class ChangeChartAction : AnAction(PluginIcons.chartMixed) {
7171
override fun hasSubstep(selectedValue: String?): Boolean = false
7272
override fun onChosen(selectedValue: String?, finalChoice: Boolean): PopupStep<*>? = null
7373
}
74-
).showUnderneathOf(e.inputEvent.component)
74+
).apply { e.inputEvent?.let { showUnderneathOf(it.component) } }
7575
}
7676
}

plugin/src/main/kotlin/spp/jetbrains/sourcemarker/view/action/ChangeTimeAction.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ class ChangeTimeAction(private val viewManager: LiveViewChartManager) : AnAction
106106
return null
107107
}
108108
}
109-
).showUnderneathOf(e.inputEvent.component)
109+
).apply { e.inputEvent?.let { showUnderneathOf(it.component) } }
110110
}
111111
}

plugin/src/main/kotlin/spp/jetbrains/sourcemarker/view/action/SetRefreshIntervalAction.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ class SetRefreshIntervalAction(private val viewManager: ResumableViewManager) :
9696
return null
9797
}
9898
}
99-
).showUnderneathOf(e.inputEvent.component)
99+
).apply { e.inputEvent?.let { showUnderneathOf(it.component) } }
100100
}
101101
}

0 commit comments

Comments
 (0)