From ec5aa854af5076afd6900fa6b92bf00dff5a14f2 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 7 Jul 2025 17:03:28 +0500 Subject: [PATCH] Update JetBrains IDE build numbers --- registry/coder/modules/jetbrains/README.md | 4 ++-- registry/coder/modules/jetbrains/main.tf | 24 +++++++++++----------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/registry/coder/modules/jetbrains/README.md b/registry/coder/modules/jetbrains/README.md index f0541408..452a4b65 100644 --- a/registry/coder/modules/jetbrains/README.md +++ b/registry/coder/modules/jetbrains/README.md @@ -149,12 +149,12 @@ module "jetbrains" { "GO" = { name = "GoLand" icon = "/icon/goland.svg" - build = "251.25410.140" # Static build number used when API is unavailable + build = "251.26927.50" # Static build number used when API is unavailable } "IU" = { name = "IntelliJ IDEA" icon = "/icon/intellij.svg" - build = "251.23774.200" # Static build number used when API is unavailable + build = "251.26927.53" # Static build number used when API is unavailable } } } diff --git a/registry/coder/modules/jetbrains/main.tf b/registry/coder/modules/jetbrains/main.tf index fc1fc679..1d511eb6 100644 --- a/registry/coder/modules/jetbrains/main.tf +++ b/registry/coder/modules/jetbrains/main.tf @@ -126,9 +126,9 @@ variable "ide_config" { - build: The build number of the IDE. Example: { - "CL" = { name = "CLion", icon = "/icon/clion.svg", build = "251.23774.202" }, - "GO" = { name = "GoLand", icon = "/icon/goland.svg", build = "251.25410.140" }, - "IU" = { name = "IntelliJ IDEA", icon = "/icon/intellij.svg", build = "251.23774.200" }, + "CL" = { name = "CLion", icon = "/icon/clion.svg", build = "251.26927.39" }, + "GO" = { name = "GoLand", icon = "/icon/goland.svg", build = "251.26927.50" }, + "IU" = { name = "IntelliJ IDEA", icon = "/icon/intellij.svg", build = "251.26927.53" }, } EOT type = map(object({ @@ -137,15 +137,15 @@ variable "ide_config" { build = string })) default = { - "CL" = { name = "CLion", icon = "/icon/clion.svg", build = "251.23774.202" }, - "GO" = { name = "GoLand", icon = "/icon/goland.svg", build = "251.25410.140" }, - "IU" = { name = "IntelliJ IDEA", icon = "/icon/intellij.svg", build = "251.23774.200" }, - "PS" = { name = "PhpStorm", icon = "/icon/phpstorm.svg", build = "251.23774.209" }, - "PY" = { name = "PyCharm", icon = "/icon/pycharm.svg", build = "251.23774.211" }, - "RD" = { name = "Rider", icon = "/icon/rider.svg", build = "251.23774.212" }, - "RM" = { name = "RubyMine", icon = "/icon/rubymine.svg", build = "251.23774.208" }, - "RR" = { name = "RustRover", icon = "/icon/rustrover.svg", build = "251.23774.316" }, - "WS" = { name = "WebStorm", icon = "/icon/webstorm.svg", build = "251.23774.210" } + "CL" = { name = "CLion", icon = "/icon/clion.svg", build = "251.26927.39" }, + "GO" = { name = "GoLand", icon = "/icon/goland.svg", build = "251.26927.50" }, + "IU" = { name = "IntelliJ IDEA", icon = "/icon/intellij.svg", build = "251.26927.53" }, + "PS" = { name = "PhpStorm", icon = "/icon/phpstorm.svg", build = "251.26927.60" }, + "PY" = { name = "PyCharm", icon = "/icon/pycharm.svg", build = "251.26927.74" }, + "RD" = { name = "Rider", icon = "/icon/rider.svg", build = "251.26927.67" }, + "RM" = { name = "RubyMine", icon = "/icon/rubymine.svg", build = "251.26927.47" }, + "RR" = { name = "RustRover", icon = "/icon/rustrover.svg", build = "251.26927.79" }, + "WS" = { name = "WebStorm", icon = "/icon/webstorm.svg", build = "251.26927.40" } } validation { condition = length(var.ide_config) > 0