File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
src/main/kotlin/com/coder/toolbox/util Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1212- ` Stop ` action is now available for running workspaces that have an out of date template.
1313- outdated and stopped workspaces are now updated and started when handling URI
1414- show errors when the Toolbox is visible again after being minimized.
15+ - URI handling now installs the exact build number if it is available for the workspace.
1516
1617## 0.3.0 - 2025-06-10
1718
Original file line number Diff line number Diff line change 1- version =0.3.0
1+ version =0.3.1
22group =com.coder.toolbox
33name =coder-toolbox
Original file line number Diff line number Diff line change @@ -380,16 +380,16 @@ open class CoderProtocolHandler(
380380 return null
381381 }
382382
383- val matchingBuildNumber = availableVersions.firstOrNull { it.contains(buildNumber) } ! = null
384- if (! matchingBuildNumber ) {
383+ val buildNumberIsNotAvailable = availableVersions.firstOrNull { it.contains(buildNumber) } = = null
384+ if (buildNumberIsNotAvailable ) {
385385 val selectedIde = availableVersions.maxOf { it }
386386 context.logAndShowInfo(
387387 " $productCode -$buildNumber not available" ,
388388 " $productCode -$buildNumber is not available, we've selected the latest $selectedIde "
389389 )
390390 return selectedIde
391391 }
392- return null
392+ return " $productCode - $buildNumber "
393393 }
394394
395395 private fun installJBClient (selectedIde : String , environmentId : String ): Job = context.cs.launch {
You can’t perform that action at this time.
0 commit comments