Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
eb93225
impl: use the new API to set titles on UI pages
fioan89 Jun 23, 2025
a042ffa
impl: update page title instead of creating a new page
fioan89 Jun 23, 2025
3283ab6
impl: use the new API version 1.3.46097
fioan89 Jun 23, 2025
1cbe9ed
fix: jump to main page after coder setup is successful
fioan89 Jun 24, 2025
894d56e
impl: update URI handling page title instead of creating a new page
fioan89 Jun 24, 2025
f3b2be2
impl: use the new constructor parameters work environment status
fioan89 Jun 24, 2025
6d67abe
impl: prioritize workspace status over TBX agent status
fioan89 Jun 24, 2025
0186310
fix: UT's related to proxy configuration
fioan89 Jun 24, 2025
760b717
Merge branch 'main' into impl-support-for-tbx-2.7
fioan89 Jun 26, 2025
baa07df
impl: customize message when loading the workspaces
fioan89 Jun 26, 2025
6356b84
impl: support for proxy basic auth
fioan89 Jun 26, 2025
3a6f869
chore: update documentation related to proxy authentication
fioan89 Jun 27, 2025
a07095d
chore: next version is 0.4.0
fioan89 Jun 27, 2025
cc19d0e
Merge branch 'main' into impl-support-for-tbx-2.7
fioan89 Jul 2, 2025
604409e
chore: upgrade dependencies
fioan89 Jul 2, 2025
bc2aace
chore: change note style
fioan89 Jul 2, 2025
1802cdf
chore: update API dependency
fioan89 Jul 2, 2025
c75289b
fix: URI handling when Toolbox is already opened
fioan89 Jul 2, 2025
5bb8241
chore: remove workaround related to url refreshing
fioan89 Jul 2, 2025
961311f
chore: document URI alias
fioan89 Jul 4, 2025
f5e7926
chore: remove attention note related to the `folder` query param
fioan89 Jul 4, 2025
f7f396c
chore: remove custom progress while establishing the SSH connection
fioan89 Jul 4, 2025
759af74
fix: switch provider screens when handling URI
fioan89 Jul 4, 2025
1a9dc8c
impl: show busy indicator earlier during URI parsing
fioan89 Jul 4, 2025
7047349
Merge branch 'main' into impl-support-for-tbx-2.7
fioan89 Jul 7, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
impl: use the new constructor parameters work environment status
  • Loading branch information
fioan89 committed Jun 24, 2025
commit f3b2be2e2b21fb168a52c0125b3797c187c113dd
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ enum class WorkspaceAndAgentStatus(val label: String, val description: String) {
return CustomRemoteEnvironmentStateV2(
context.i18n.pnotr(label),
color = getStateColor(context),
reachable = ready() || unhealthy(),
isReachable = ready() || unhealthy(),
// TODO@JB: How does this work? Would like a spinner for pending states.
icon = getStateIcon()
iconId = getStateIcon().id,
)
}

Expand Down