Skip to content

Commit 51e9002

Browse files
Merge branch 'main' into dev/fix-test-exporer-filter-ui-margin
2 parents 02a124e + f08992a commit 51e9002

File tree

150 files changed

+35911
-35264
lines changed

Some content is hidden

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

150 files changed

+35911
-35264
lines changed

.yarnrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
disturl "https://electronjs.org/headers"
2-
target "22.3.5"
2+
target "22.3.10"
33
runtime "electron"
44
build_from_source "true"

build/lib/electron.js

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

build/lib/electron.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function darwinBundleDocumentTypes(types: { [name: string]: string | string[] },
9191
}
9292

9393
export const config = {
94-
version: product.electronRepository ? '22.5.2' : util.getElectronVersion(),
94+
version: product.electronRepository ? '22.5.3' : util.getElectronVersion(),
9595
productAppName: product.nameLong,
9696
companyName: 'Microsoft Corporation',
9797
copyright: 'Copyright (C) 2023 Microsoft. All rights reserved',
@@ -212,7 +212,7 @@ function getElectron(arch: string): () => NodeJS.ReadWriteStream {
212212
}
213213

214214
async function main(arch = process.arch): Promise<void> {
215-
const version = product.electronRepository ? '22.5.2' : util.getElectronVersion();
215+
const version = product.electronRepository ? '22.5.3' : util.getElectronVersion();
216216
const electronPath = path.join(root, '.build', 'electron');
217217
const versionFile = path.join(electronPath, 'version');
218218
const isUpToDate = fs.existsSync(versionFile) && fs.readFileSync(versionFile, 'utf8') === `${version}`;

build/lib/i18n.resources.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -322,10 +322,6 @@
322322
"name": "vs/workbench/contrib/bracketPairColorizer2Telemetry",
323323
"project": "vscode-workbench"
324324
},
325-
{
326-
"name": "vs/workbench/contrib/offline",
327-
"project": "vscode-workbench"
328-
},
329325
{
330326
"name": "vs/workbench/contrib/remoteTunnel",
331327
"project": "vscode-workbench"

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,8 @@
692692
"--tab-border-top-color",
693693
"--tab-dirty-border-top-color",
694694
"--tabs-border-bottom-color",
695+
"--tab-sizing-current-width",
696+
"--tab-sizing-fixed-max-width",
695697
"--testMessageDecorationFontFamily",
696698
"--testMessageDecorationFontSize",
697699
"--title-border-bottom-color",

cgmanifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,12 +528,12 @@
528528
"git": {
529529
"name": "electron",
530530
"repositoryUrl": "https://github.com/electron/electron",
531-
"commitHash": "0b17a201195ae6445e11cee50e436a3511717600"
531+
"commitHash": "b07f2f0f42a1483cd2e5ec8fa3c77ebaa0507069"
532532
}
533533
},
534534
"isOnlyProductionDependency": true,
535535
"license": "MIT",
536-
"version": "22.3.5"
536+
"version": "22.3.10"
537537
},
538538
{
539539
"component": {

extensions/theme-defaults/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
},
2222
{
2323
"id": "Default Dark Modern",
24-
"label": "%darkPlusExperimentalColorThemeLabel%",
24+
"label": "%darkModernThemeLabel%",
2525
"uiTheme": "vs-dark",
26-
"path": "./themes/dark_plus_experimental.json"
26+
"path": "./themes/dark_modern.json"
2727
},
2828
{
2929
"id": "Default Light+",
@@ -33,9 +33,9 @@
3333
},
3434
{
3535
"id": "Default Light Modern",
36-
"label": "%lightPlusExperimentalColorThemeLabel%",
36+
"label": "%lightModernThemeLabel%",
3737
"uiTheme": "vs",
38-
"path": "./themes/light_plus_experimental.json"
38+
"path": "./themes/light_modern.json"
3939
},
4040
{
4141
"id": "Visual Studio Dark",

extensions/theme-defaults/package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"displayName": "Default Themes",
33
"description": "The default Visual Studio light and dark themes",
44
"darkPlusColorThemeLabel": "Dark+",
5-
"darkPlusExperimentalColorThemeLabel": "Dark Modern",
5+
"darkModernThemeLabel": "Dark Modern",
66
"lightPlusColorThemeLabel": "Light+",
7-
"lightPlusExperimentalColorThemeLabel": "Light Modern",
7+
"lightModernThemeLabel": "Light Modern",
88
"darkColorThemeLabel": "Dark (Visual Studio)",
99
"lightColorThemeLabel": "Light (Visual Studio)",
1010
"hcColorThemeLabel": "Dark High Contrast",

0 commit comments

Comments
 (0)