diff --git a/CHANGELOG.md b/CHANGELOG.md index f87d503b..68376a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ ### Changed - links to documentation now point to the latest Coder OSS - simplified main action link text from `Connect to Coder Workspaces` to `Connect to Coder` +- minimum supported Gateway build is now 222.3739.24 ## [2.0.0] ### Added diff --git a/gradle.properties b/gradle.properties index 77f868d5..91f67785 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,16 +3,16 @@ pluginGroup=com.coder.gateway pluginName=coder-gateway # SemVer format -> https://semver.org -pluginVersion=2.0.0 +pluginVersion=2.0.1 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. -pluginSinceBuild=222.3345.108 +pluginSinceBuild=222.3739.24 pluginUntilBuild=222.* # IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties # Gateway available build versions https://www.jetbrains.com/intellij-repository/snapshots and https://www.jetbrains.com/intellij-repository/releases platformType=GW -platformVersion=222.3345.108-CUSTOM-SNAPSHOT -instrumentationCompiler=222.3345.108-CUSTOM-SNAPSHOT +platformVersion=222.3739.24-CUSTOM-SNAPSHOT +instrumentationCompiler=222.3739.24-CUSTOM-SNAPSHOT platformDownloadSources=true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 diff --git a/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt b/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt index a7d7c6b2..7d494748 100644 --- a/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt +++ b/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt @@ -145,8 +145,8 @@ class CoderLocateRemoteProjectStepView(private val disableNextAction: () -> Unit val idesWithStatus = withContext(Dispatchers.IO) { IntelliJPlatformProduct.values() .filter { it.showInGateway } - .flatMap { CachingProductsJsonWrapper.getAvailableIdes(it, workspaceOS) } - .map { ide -> IdeWithStatus(ide.product, ide.buildNumber, IdeStatus.DOWNLOAD, ide.download, null, ide.presentableVersion) } + .flatMap { CachingProductsJsonWrapper.getInstance().getAvailableIdes(it, workspaceOS) } + .map { ide -> IdeWithStatus(ide.product, ide.buildNumber, IdeStatus.DOWNLOAD, ide.download, null, ide.presentableVersion, ide.remoteDevType) } } if (idesWithStatus.isEmpty()) {