From a6a4c508bf6e967d6844dd5e68f39fb4015f233b Mon Sep 17 00:00:00 2001 From: Robo Quat <87151047+roboquat@users.noreply.github.com> Date: Thu, 7 Nov 2024 03:02:03 -0500 Subject: [PATCH] [JetBrains] Update Platform Version from JetBrains Gateway Plugin (EAP) (#20320) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update Platform Version of JetBrains Gateway Plugin (EAP) to * Revert gradle properties changes * Address Filip's feedback https://github.com/gitpod-io/gitpod/pull/20319#discussion_r1828975604 Co-authored-by: Filip Troníček --------- Co-authored-by: Huiwen Co-authored-by: Filip Troníček --- .../ide/jetbrains/gateway-plugin/gradle-latest.properties | 4 ++-- .../io/gitpod/jetbrains/gateway/GitpodSettingsConfigurable.kt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/ide/jetbrains/gateway-plugin/gradle-latest.properties b/components/ide/jetbrains/gateway-plugin/gradle-latest.properties index 556e5d3b2e9cbf..a0038e80726356 100644 --- a/components/ide/jetbrains/gateway-plugin/gradle-latest.properties +++ b/components/ide/jetbrains/gateway-plugin/gradle-latest.properties @@ -7,5 +7,5 @@ pluginUntilBuild=243.* # Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl # See https://jb.gg/intellij-platform-builds-list for available build versions. pluginVerifierIdeVersions=2024.3 -# Version from "com.jetbrains.gateway" which can be found at https://www.jetbrains.com/intellij-repository/snapshots -platformVersion=243.18137.22 +# Version from "com.jetbrains.gateway" which can be found at https://www.jetbrains.com/updates/updates.xml or exec `./gradlew printProductsReleases` +platformVersion=243.21155.27 diff --git a/components/ide/jetbrains/gateway-plugin/src/main/kotlin/io/gitpod/jetbrains/gateway/GitpodSettingsConfigurable.kt b/components/ide/jetbrains/gateway-plugin/src/main/kotlin/io/gitpod/jetbrains/gateway/GitpodSettingsConfigurable.kt index 6f56276a380692..fdd3ee4d5b9bfa 100644 --- a/components/ide/jetbrains/gateway-plugin/src/main/kotlin/io/gitpod/jetbrains/gateway/GitpodSettingsConfigurable.kt +++ b/components/ide/jetbrains/gateway-plugin/src/main/kotlin/io/gitpod/jetbrains/gateway/GitpodSettingsConfigurable.kt @@ -34,7 +34,7 @@ class GitpodSettingsConfigurable : BoundConfigurable("Gitpod") { row { checkBox("Persistent connection heartbeats") .bindSelected(state::additionalHeartbeat) - .comment("Keep workspaces running as long as the IDE connection remains active.") + .comment("Keep workspaces running as long as the IDE connection remains active") } }