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 1616- ` Stop ` action is now available for running workspaces that have an out of date template.
1717- outdated and stopped workspaces are now updated and started when handling URI
1818- show errors when the Toolbox is visible again after being minimized.
19+ - URI handling now installs the exact build number if it is available for the workspace.
1920
2021## 0.3.0 - 2025-06-10
2122
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 @@ -382,16 +382,16 @@ open class CoderProtocolHandler(
382382 return null
383383 }
384384
385- val matchingBuildNumber = availableVersions.firstOrNull { it.contains(buildNumber) } ! = null
386- if (! matchingBuildNumber ) {
385+ val buildNumberIsNotAvailable = availableVersions.firstOrNull { it.contains(buildNumber) } = = null
386+ if (buildNumberIsNotAvailable ) {
387387 val selectedIde = availableVersions.maxOf { it }
388388 context.logAndShowInfo(
389389 " $productCode -$buildNumber not available" ,
390390 " $productCode -$buildNumber is not available, we've selected the latest $selectedIde "
391391 )
392392 return selectedIde
393393 }
394- return null
394+ return " $productCode - $buildNumber "
395395 }
396396
397397 private fun installJBClient (selectedIde : String , environmentId : String ): Job = context.cs.launch {
You can’t perform that action at this time.
0 commit comments