Skip to content

Commit

Permalink
chore: bump ide versions
Browse files Browse the repository at this point in the history
  • Loading branch information
BFergerson committed Sep 25, 2023
1 parent 59e6020 commit 92f8dbf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ projectVersion=0.7.10-SNAPSHOT
pluginSinceBuild=231

platformType=IU
ideVersion=2023.1.4
ideVersion=2023.2.2
platformDownloadSources=true
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
Expand Down
2 changes: 1 addition & 1 deletion insight/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ group = "plus.sourceplus.interface"
version = project.properties["projectVersion"] as String? ?: projectVersion

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

val sourcesJar = tasks.register<Jar>("sourcesJar") {
Expand Down
2 changes: 1 addition & 1 deletion marker/jvm-marker/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ group = "plus.sourceplus.interface"
version = project.properties["projectVersion"] as String? ?: projectVersion

intellij {
plugins.set(listOf("java", "Groovy", "Kotlin", "org.intellij.scala:2023.1.7"))
plugins.set(listOf("java", "Groovy", "Kotlin", "org.intellij.scala:2023.2.23"))
}

val sourcesJar = tasks.register<Jar>("sourcesJar") {
Expand Down
2 changes: 1 addition & 1 deletion marker/py-marker/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ version = project.properties["projectVersion"] as String? ?: projectVersion

intellij {
type.set("IC")
plugins.set(listOf("PythonCore:231.9225.4"))
plugins.set(listOf("PythonCore:232.8660.185"))
}

val sourcesJar = tasks.register<Jar>("sourcesJar") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ class ChangeChartAction : AnAction(PluginIcons.chartMixed) {
override fun hasSubstep(selectedValue: String?): Boolean = false
override fun onChosen(selectedValue: String?, finalChoice: Boolean): PopupStep<*>? = null
}
).showUnderneathOf(e.inputEvent.component)
).apply { e.inputEvent?.let { showUnderneathOf(it.component) } }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ class ChangeTimeAction(private val viewManager: LiveViewChartManager) : AnAction
return null
}
}
).showUnderneathOf(e.inputEvent.component)
).apply { e.inputEvent?.let { showUnderneathOf(it.component) } }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ class SetRefreshIntervalAction(private val viewManager: ResumableViewManager) :
return null
}
}
).showUnderneathOf(e.inputEvent.component)
).apply { e.inputEvent?.let { showUnderneathOf(it.component) } }
}
}

0 comments on commit 92f8dbf

Please sign in to comment.