Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rstack",
"displayName": "Rstack",
"version": "0.2.0",
"version": "0.3.0",
"private": true,
"description": "All Rstack tool integrations for VS Code.",
"categories": [
Expand Down
8 changes: 5 additions & 3 deletions packages/vscode/src/statusBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,11 @@ const STATE_STYLES: Readonly<
severity: 3,
item: {
// Keeps the idle glyph, unlike every other state that colours the item.
// A version mismatch is advisory — the run goes ahead — so the amber
// background is the whole signal; swapping the glyph too reads as
// "stopped", which is the one thing that has not happened.
// Every stack holds off on a mismatch — lint, fmt and Rstest all stop
// before spawning anything — but nothing broke: the tool is merely too
// old, and the fix (upgrading a package) is the user's, not a restart.
// The amber background carries that; the error glyph is reserved for a
// crash, which this is not.
text: IDLE_ITEM_TEXT,
background: 'statusBarItem.warningBackground',
},
Expand Down
Loading