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 12
12
- ` Stop ` action is now available for running workspaces that have an out of date template.
13
13
- outdated and stopped workspaces are now updated and started when handling URI
14
14
- 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.
15
16
16
17
## 0.3.0 - 2025-06-10
17
18
Original file line number Diff line number Diff line change 1
- version =0.3.0
1
+ version =0.3.1
2
2
group =com.coder.toolbox
3
3
name =coder-toolbox
Original file line number Diff line number Diff line change @@ -380,16 +380,16 @@ open class CoderProtocolHandler(
380
380
return null
381
381
}
382
382
383
- val matchingBuildNumber = availableVersions.firstOrNull { it.contains(buildNumber) } ! = null
384
- if (! matchingBuildNumber ) {
383
+ val buildNumberIsNotAvailable = availableVersions.firstOrNull { it.contains(buildNumber) } = = null
384
+ if (buildNumberIsNotAvailable ) {
385
385
val selectedIde = availableVersions.maxOf { it }
386
386
context.logAndShowInfo(
387
387
" $productCode -$buildNumber not available" ,
388
388
" $productCode -$buildNumber is not available, we've selected the latest $selectedIde "
389
389
)
390
390
return selectedIde
391
391
}
392
- return null
392
+ return " $productCode - $buildNumber "
393
393
}
394
394
395
395
private fun installJBClient (selectedIde : String , environmentId : String ): Job = context.cs.launch {
You can’t perform that action at this time.
0 commit comments