Skip to content

Commit 844fc57

Browse files
authored
Update ide plugin for 2025.1 (utopia-rise#818)
* Update ide plugin * Bump until version as well * Add clarification util when the current version will be supported
1 parent 2e7dc43 commit 844fc57

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

kt/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ godotKotlinJvm = "0.12.3"
44
kotlin = "2.1.10" # https://kotlinlang.org/docs/releases.html#release-details
55
kotlinCoroutine = "1.10.1" # https://github.com/Kotlin/kotlinx.coroutines/releases
66
godot = "4.4.1"
7-
ideaPluginDefaultIntellijVersion = "2024.3.3"
7+
ideaPluginDefaultIntellijVersion = "2025.1"
88

99
toolchain-jvm="11"
1010

kt/plugins/godot-intellij-plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ tasks {
7474
} else {
7575
this.pluginVersion.set("${project.version}-IJ$intellijVersion")
7676
}
77-
sinceBuild.set("243.1")
77+
sinceBuild.set("251.1")
7878
// magic values like 999.* are no longer supported. But we can support current version +2 years. Example: current 242.3 (2024.2.3) until 279.* (2027.9.*)
7979
// this prevents us from needing to update the ide plugin with every ide version update and gives us ~2 years time for that after the last release
80-
untilBuild.set("279.*")
80+
untilBuild.set("289.*") // until the end of 2028
8181

8282
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
8383
pluginDescription.set(

kt/plugins/godot-intellij-plugin/src/main/kotlin/godot/intellij/plugin/gradle/GradleSystemListener.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import org.jetbrains.kotlin.idea.configuration.GRADLE_SYSTEM_ID
99
class GradleSystemListener : ExternalSystemTaskNotificationListenerAdapter(null) {
1010
override fun onStart(
1111
id: ExternalSystemTaskId,
12-
workingDir: String?,
12+
workingDir: String,
1313
) {
1414
if (id.projectSystemId == GRADLE_SYSTEM_ID && id.type == RESOLVE_PROJECT) {
1515
// Gradle sync just started, pause our existing import if one is happening.

0 commit comments

Comments
 (0)