Skip to content

Commit 2d11080

Browse files
authored
Merge branch 'main' into tyriar/node-pty-39
2 parents da7c3e4 + 04fa41c commit 2d11080

File tree

99 files changed

+2111
-659
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+2111
-659
lines changed

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
disturl="https://electronjs.org/headers"
22
target="39.2.3"
3-
ms_build_id="12869810"
3+
ms_build_id="12895514"
44
runtime="electron"
55
build_from_source="true"
66
legacy-peer-deps="true"

build/lib/stylelint/vscode-known-variables.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@
159159
"--vscode-editor-foldPlaceholderForeground",
160160
"--vscode-editor-foreground",
161161
"--vscode-editor-hoverHighlightBackground",
162+
"--vscode-editor-inactiveLineHighlightBackground",
162163
"--vscode-editor-inactiveSelectionBackground",
163164
"--vscode-editor-inlineValuesBackground",
164165
"--vscode-editor-inlineValuesForeground",
@@ -303,9 +304,9 @@
303304
"--vscode-editorOverviewRuler-background",
304305
"--vscode-editorOverviewRuler-border",
305306
"--vscode-editorOverviewRuler-bracketMatchForeground",
307+
"--vscode-editorOverviewRuler-commentDraftForeground",
306308
"--vscode-editorOverviewRuler-commentForeground",
307309
"--vscode-editorOverviewRuler-commentUnresolvedForeground",
308-
"--vscode-editorOverviewRuler-commentDraftForeground",
309310
"--vscode-editorOverviewRuler-commonContentForeground",
310311
"--vscode-editorOverviewRuler-currentContentForeground",
311312
"--vscode-editorOverviewRuler-deletedForeground",
@@ -345,7 +346,6 @@
345346
"--vscode-editorWarning-background",
346347
"--vscode-editorWarning-border",
347348
"--vscode-editorWarning-foreground",
348-
"--vscode-editorWatermark-foreground",
349349
"--vscode-editorWhitespace-foreground",
350350
"--vscode-editorWidget-background",
351351
"--vscode-editorWidget-border",

extensions/git/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3508,7 +3508,7 @@
35083508
"git.detectWorktreesLimit": {
35093509
"type": "number",
35103510
"scope": "resource",
3511-
"default": 10,
3511+
"default": 50,
35123512
"description": "%config.detectWorktreesLimit%"
35133513
},
35143514
"git.alwaysShowStagedChangesResourceGroup": {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-oss-dev",
3-
"version": "1.107.0",
4-
"distro": "f7daaf68414ef6e47bec698f8babc297f0d90f0d",
3+
"version": "1.108.0",
4+
"distro": "ac62b183885af851634b215f084a75e84d439948",
55
"author": {
66
"name": "Microsoft Corporation"
77
},
208 Bytes
Binary file not shown.

src/vs/base/browser/ui/list/list.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
height: 100%;
99
width: 100%;
1010
white-space: nowrap;
11+
overflow: hidden;
1112
}
1213

1314
.monaco-list.mouse-support {

src/vs/base/browser/ui/toolbar/toolbar.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ export class ToolBar extends Disposable {
283283
return;
284284
}
285285

286+
// Ensure that the container width respects the minimum width of the
287+
// element which is set based on the `responsiveBehavior.minItems` option
288+
containerWidth = Math.max(containerWidth, parseInt(this.element.style.minWidth));
289+
286290
// Each action is assumed to have a minimum width so that actions with a label
287291
// can shrink to the action's minimum width. We do this so that action visibility
288292
// takes precedence over the action label.

src/vs/base/common/codiconsLibrary.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,6 @@ export const codiconsLibrary = {
617617
cursor: register('cursor', 0xec5c),
618618
eraser: register('eraser', 0xec5d),
619619
fileText: register('file-text', 0xec5e),
620-
gitLens: register('git-lens', 0xec5f),
621620
quotes: register('quotes', 0xec60),
622621
rename: register('rename', 0xec61),
623622
runWithDeps: register('run-with-deps', 0xec62),
@@ -644,4 +643,7 @@ export const codiconsLibrary = {
644643
clockface: register('clockface', 0xec75),
645644
unarchive: register('unarchive', 0xec76),
646645
sessionInProgress: register('session-in-progress', 0xec77),
646+
collectionSmall: register('collection-small', 0xec78),
647+
vmSmall: register('vm-small', 0xec79),
648+
cloudSmall: register('cloud-small', 0xec7a),
647649
} as const;

src/vs/base/common/iterator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export namespace Iterable {
1212
}
1313

1414
const _empty: Iterable<never> = Object.freeze([]);
15-
export function empty<T = never>(): Iterable<T> {
16-
return _empty as Iterable<T>;
15+
export function empty<T = never>(): readonly never[] {
16+
return _empty as readonly never[];
1717
}
1818

1919
export function* single<T>(element: T): Iterable<T> {

0 commit comments

Comments
 (0)