Alex Ross
89b8b71fd8
Add comment draft color to overview ruler ( #276972 )
...
RE: https://github.com/microsoft/vscode/pull/271536#discussion_r2518015387
2025-11-12 18:43:29 +00:00
Johannes Rieken
f62ffbb85b
Remove NLS inline chat hint ( #276935 )
...
fixes https://github.com/microsoft/vscode/issues/271279
fixes https://github.com/microsoft/vscode/issues/276927
2025-11-12 15:44:34 +00:00
Henning Dieterichs
09fd796731
Fixes stylesheet
2025-11-12 15:13:25 +01:00
Henning Dieterichs
32b7a94b60
Introduces IWebWorkerService to allow the monaco editor to customize web worker handling via service injection
2025-11-12 14:14:29 +01:00
Copilot
36b32e3d47
Show draft comment icon in gutter when appropriate ( #271536 )
...
* Initial plan
* Add draft comment icon support in gutter and comments view
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com >
* Add state property to Comment interface for draft support
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com >
* Add color registration and CSS for draft comment glyph
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com >
* clean up
* Fix known variables
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com >
2025-11-12 12:16:05 +00:00
Matt Bierner
9388f8edde
Resolve again
2025-11-11 20:45:55 -08:00
Matt Bierner
e88ed802b0
Back to import.meta.resolve
2025-11-11 18:31:10 -08:00
Matt Bierner
b59466c366
Use require for resolve
2025-11-11 17:57:13 -08:00
Matt Bierner
336cb6d0ab
map -> forEach
2025-11-11 17:16:53 -08:00
Matt Bierner
475c364fde
Move defaultMaxListeners to start of file
2025-11-11 17:15:49 -08:00
Matt Bierner
f3c8fabb47
Use simpler dirname
2025-11-11 17:13:51 -08:00
Matt Bierner
723aa849c9
Convert gulpfiles to modules
...
Makes a pass through our top level gulpfiles to convert them to modules
2025-11-11 15:28:50 -08:00
Matt Bierner
96ede6b3ec
Merge pull request #276822 from mjbvz/dev/mjbvz/querulous-ptarmigan
...
Ignore a few more built files
2025-11-11 15:09:08 -08:00
Matt Bierner
fdc7027b9c
Merge pull request #276821 from mjbvz/dev/mjbvz/accurate-galliform
...
Try converting one of our gulpfiles to a module
2025-11-11 15:03:51 -08:00
Matt Bierner
e045c655ea
Ignore a few more built files
...
These files are generated during build
2025-11-11 14:50:16 -08:00
Matt Bierner
b314a5e236
Try converting one of our gulpfiles to a module
...
Experiments with converting one of our gulpfiles to a module
2025-11-11 14:44:30 -08:00
Copilot
0297176f1f
Don't inline CSS for comment widget ( #276479 )
...
* Initial plan
* Move inline CSS to static CSS file in comment widget
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com >
* clean up
* Update colors
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com >
2025-11-11 17:36:18 +00:00
Henning Dieterichs
38378095d3
Adds copyright header
2025-11-11 18:32:36 +01:00
Henning Dieterichs
7aafba5ad4
Fixes CI
2025-11-11 18:32:36 +01:00
Henning Dieterichs
b6b78218fe
adds monaco editor playground launch config
2025-11-11 18:32:36 +01:00
Henning Dieterichs
095502f491
Merges standalone and workbench editor worker service. ( #276499 )
...
Merges standalone and workbench editor worker service.
2025-11-10 16:43:38 +00:00
Christof Marti
576c04f264
Update known variables
2025-11-06 19:59:41 +01:00
Raymond Zhao
18d828e5d5
chore: suppress node warnings ( #274905 )
...
* chore: suppress node CFG warnings
* Add lines from gdnsuppress
2025-11-04 12:45:30 +09:00
Paul
c2ad003d43
Enable Linux policy generation step in CI ( #274847 )
2025-11-03 13:06:54 -08:00
Josh Spicer
b118b3054e
bump copyright ( #274806 )
...
* bump copyright
* compile build folder
2025-11-03 11:29:36 -08:00
BeniBenj
12f4872e2d
Revert "Issue #210694 add hoverforeground and hoverbackground to activity bars ( #263146 )"
...
This reverts commit 619c243e4d .
2025-11-03 12:10:17 +01:00
Amin Sajedian
619c243e4d
Issue #210694 add hoverforeground and hoverbackground to activity bars ( #263146 )
...
* Add hover colors for side/top/bottom activity bar in theme and styles
Modified Files Summary
1. Theme Color Definition
[src/vs/workbench/common/theme.ts]
- Define new theme color tokens:
- `ACTIVITY_BAR_HOVER_FOREGROUND`
- `ACTIVITY_BAR_HOVER_BACKGROUND`
- `ACTIVITY_BAR_TOP_HOVER_FOREGROUND`
- `ACTIVITY_BAR_TOP_HOVER_BACKGROUND`
2. Activity Bar: Theming + Wiring
[src/vs/workbench/browser/parts/activitybar/activitybarPart.ts]
- Register new hover tokens in theme registry
- Map hover tokens to CSS variables for stylesheet consumption
- Wire hover colors into composite bar configuration
3. Activity Bar CSS (Hover Styles)
[src/vs/workbench/browser/parts/activitybar/media/activityaction.css]
- Apply hover styles using new CSS variables:
- `--vscode-activityBar-hoverForeground`
- `--vscode-activityBar-hoverBackground`
- Integrate hover states with existing active/focus styling
4. Sidebar: Theming Integration
[src/vs/workbench/browser/parts/sidebar/sidebarPart.ts]
- Reference top-position hover tokens for consistency:
- `ACTIVITY_BAR_TOP_HOVER_FOREGROUND`
- `ACTIVITY_BAR_TOP_HOVER_BACKGROUND`
- Ensure sidebar hover behavior aligns with activity bar when positioned at top or bottom
5. Sidebar CSS (Hover Styles)
`src/vs/workbench/browser/parts/sidebar/media/sidebarpart.css`
- Apply hover styling using activity bar CSS variables
- Maintain visual consistency between sidebar and activity bar hover states
6. Stylelint Allowlist
[build/lib/stylelint/vscode-known-variables.json]
- Add CSS custom properties to prevent lint errors:
- `--vscode-activityBar-hoverForeground`
- `--vscode-activityBar-hoverBackground`
Usage
settings.json
{
"workbench.activityBar.location": "default", // "top"
"workbench.colorCustomizations": {
// Left Activity Bar
"activityBar.hoverForeground": "#ff0000",
"activityBar.hoverBackground": "#00ff00",
// Top Activity Bar
"activityBarTop.hoverForeground": "#0000ff",
"activityBarTop.hoverBackground": "#ffff00"
}
}
* refactor: move default colors to theme.ts and remove CSS fallbacks in activityaction.css and sidebarpart.css, per feedback.
---------
Co-authored-by: Benjamin Christopher Simmonds <44439583+benibenj@users.noreply.github.com >
2025-11-02 22:41:56 +00:00
Christof Marti
470d7704a6
Support loading system certificates with Node
2025-11-02 23:19:00 +01:00
Raymond Zhao
ea01b7e2bb
chore: fix SBOM names ( #274460 )
2025-11-02 14:35:48 +01:00
Paul
2b76aa1113
Add build folder tests to CI ( #272564 )
2025-10-31 09:23:04 +01:00
Matt Bierner
c79433c9de
Fix import and use clearer file name
2025-10-30 08:57:26 -07:00
Matt Bierner
883485b3b5
Pick up esbuild target from tsconfig files
2025-10-30 08:53:24 -07:00
Benjamin Pasero
4df8d67121
build - update tsconfig lib to ES2024 for layers checker ( #274115 )
2025-10-30 14:18:38 +00:00
Kyle Cutler
38a44e89ce
Support GitHub-style alert syntax in MarkdownStrings ( #272228 )
...
* Support GitHub-style alerts in MarkdownStrings
* PR feedback, mark internal
* Rename to `supportAlertSyntax`
* Update snapshots
* Fix lower case tags
* Remove title="" from span
* Marked extension
* New theme variables
* Fix test
* Update variable names
2025-10-29 21:00:10 +00:00
Matt Bierner
fe8fc75455
Pick up latest TS native preview
...
Fixes the emit for copyright headers
2025-10-28 09:18:27 -07:00
Copilot
908f34c37d
Fix scrollbar background color customization issue ( #273399 )
...
* Initial plan
* Add scrollbar.background color customization
Co-authored-by: alexdima <5047891+alexdima@users.noreply.github.com >
* Update known variables
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: alexdima <5047891+alexdima@users.noreply.github.com >
Co-authored-by: Alex Dima <alexdima@microsoft.com >
2025-10-27 07:18:37 +00:00
Daniel Imms
541428d63c
Merge pull request #272942 from microsoft/tyriar/wasm
...
Include powershell and bash grammars in bundle
2025-10-23 09:11:45 -07:00
Daniel Imms
281f94f487
Include powershell and bash grammars in bundle
...
Fixes #272852
2025-10-23 08:58:55 -07:00
João Moreno
5e4cf386d9
Revert "feat: reenable asar support" ( #272935 )
...
Revert "feat: reenable asar support (#272552 )"
This reverts commit ff891375f4 .
2025-10-23 15:50:48 +00:00
Henning Dieterichs
5e18e088a9
Fixes treeshaking on windows ( #272899 )
2025-10-23 13:38:06 +00:00
sinsincp
9b59d31df2
Fix AppUserModelID for code-workspace association ( #272753 )
2025-10-23 21:05:14 +09:00
Copilot
8fd821a0c7
Remove experimental badge from prompt file support ( #272541 )
...
* Initial plan
* Remove chat.promptFiles setting and experimental tags from prompt file settings
Co-authored-by: digitarald <8599+digitarald@users.noreply.github.com >
* Fix compilation errors - remove unused imports and fix variable references
Co-authored-by: digitarald <8599+digitarald@users.noreply.github.com >
* Update policy data file to remove chat.promptFiles entry
Co-authored-by: digitarald <8599+digitarald@users.noreply.github.com >
* remove unused collectAgentInstructionsOnly
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: digitarald <8599+digitarald@users.noreply.github.com >
Co-authored-by: Harald Kirschner <hkirschner@microsoft.com >
Co-authored-by: Martin Aeschlimann <martinae@microsoft.com >
2025-10-23 10:22:25 +02:00
Robo
ff891375f4
feat: reenable asar support ( #272552 )
2025-10-23 07:37:46 +02:00
Paul
e81696f60d
Add policy support for linux ( #272579 )
2025-10-22 16:01:59 -07:00
Paul
0ea6a23376
Modularize the policy generation script ( #272332 )
2025-10-22 00:08:32 +00:00
Paul
d72d6a2424
Generate policy data as JSON ( #272368 )
2025-10-21 12:48:33 -07:00
Paul
6025703c6a
Revert "Generate policy data as JSON" ( #272362 )
2025-10-20 16:12:10 -07:00
Paul
99c299e880
Generate policy data as JSON ( #272018 )
2025-10-20 14:38:48 -07:00
Robo
e0f4b8926e
chore: bump electron@37.7.0 ( #272157 )
...
* chore: bump electron@37.7.0
* chore: update node.js build
* chore: bump distro
2025-10-19 19:19:05 +00:00
Ladislau Szomoru
c5b9423298
Engineering - add debug messages to verify that the SUID flag is removed from a file ( #272175 )
2025-10-19 11:21:05 -07:00