-
Notifications
You must be signed in to change notification settings - Fork 907
Update version to 1.109.5 #666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 1.108.2 | ||
| 1.109.5 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| { | ||
| "src/vs/workbench/browser/parts/activitybar/activitybarPart.ts": "3edda05b7b7cf235bc0d51f066aa8d57c447ea784ccd507316327150a4bb880c", | ||
| "src/vs/workbench/browser/parts/titlebar/media/titlebarpart.css": "26cdde234b2811b42166224f3b0f12eb6d78d519d5262cc2b12ec08653b3df39", | ||
| "src/vs/workbench/browser/web.main.ts": "a7c43beaa0f873ce0f9edc1aa03db3e9150fb1ac6dc6479a08e0ea5c8a3b2e76", | ||
| "src/vs/workbench/browser/parts/titlebar/media/titlebarpart.css": "f87409af0f50e021ac0880863da50ccfc738728367228af595675f6d12f1ad1b", | ||
| "src/vs/workbench/browser/web.main.ts": "c28f5afce7e37992262b827afcc98b25dc0ea9805fb84bfb3e2641d94ddaa885", | ||
| "src/vs/workbench/contrib/files/browser/editors/fileEditorInput.ts": "e986095a30dbea54af56c25fa1b184b55f34f8914129b27e2f20d8c4ea9fd16b", | ||
| "src/vs/workbench/contrib/webview/browser/pre/index.html": "8b2e27b411b4fa493fe003c5312378ca0c7164fee99ed288c6e4f47c43dbca1f", | ||
| "src/vs/workbench/services/extensionManagement/browser/builtinExtensionsScannerService.ts": "16fc1f8830432097a2de87ba04f9f11e930408df8f672bb7a4bbbe3c1a7c509d", | ||
| "src/vs/workbench/services/label/common/labelService.ts": "ac42f60193b50a4668384787468758e4b093f9f2da74a7c9604de5c455886e98", | ||
| "src/vs/workbench/services/textfile/browser/textFileService.ts": "c384a6ec5991888fb09cdbf482a6747fa15d486e1cd8967560da3ca1df65944e", | ||
| "src/vs/base/common/network.ts": "e8679d4499a7bf7474f31e3dcf61db40be3c0c5c81837cf7adf8e7ea2b656fa1", | ||
| "src/vs/workbench/services/label/common/labelService.ts": "d9a00bb4644ffdaee5b22261389ade4cc2c0d0c37ba7a46c779f8fb9c7db1866", | ||
| "src/vs/workbench/services/textfile/browser/textFileService.ts": "886566605815367d3866be243994829729fd0b85c04ab7450b9de22ee93053eb", | ||
| "src/vs/base/common/network.ts": "059af1f9d8671226e6636bed2a28a6d91a15c1a26f5c826336ce0dedacb3cafb", | ||
| "src/vs/workbench/contrib/webview/browser/pre/index-no-csp.html": "40d576ad2307d28012b34b86858ba36ba49ae10e5aedb394bd06b14a35b869a5" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,8 +96,10 @@ import { TunnelSource } from '../services/remote/common/tunnelModel.js'; | |
| import { mainWindow } from '../../base/browser/window.js'; | ||
| import { INotificationService, Severity } from '../../platform/notification/common/notification.js'; | ||
| import { IDefaultAccountService } from '../../platform/defaultAccount/common/defaultAccount.js'; | ||
| import { DefaultAccountService } from '../services/accounts/common/defaultAccount.js'; | ||
| import { DefaultAccountService } from '../services/accounts/browser/defaultAccount.js'; | ||
| import { AccountPolicyService } from '../services/policies/common/accountPolicyService.js'; | ||
| import { WorkbenchModeService } from '../services/layout/browser/workbenchModeService.js'; | ||
| import { IWorkbenchModeService } from '../services/layout/common/workbenchModeService.js'; | ||
|
|
||
| export class BrowserMain extends Disposable { | ||
|
|
||
|
|
@@ -387,6 +389,14 @@ export class BrowserMain extends Disposable { | |
| // | ||
| // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
|
|
||
| // Layout Mode | ||
| const workbenchModeService: WorkbenchModeService = this._register(new WorkbenchModeService(configurationService, fileService, environmentService, uriIdentityService, logService, storageService)); | ||
| serviceCollection.set(IWorkbenchModeService, workbenchModeService); | ||
| try { | ||
| await workbenchModeService.initialize(); | ||
| } catch (error) { | ||
| logService.error('Error while initializing workbench mode service', error); | ||
| } | ||
|
Comment on lines
+392
to
+399
|
||
|
|
||
| // Workspace Trust Service | ||
| const workspaceTrustEnablementService = new WorkspaceTrustEnablementService(configurationService, environmentService); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR title/description says this is only a version bump, but this change set also modifies runtime behavior and UI (e.g., text model option copying, workspace label, new service registration, CSS). Please update the PR title/description (or split into separate PRs) so the scope is accurately represented for reviewers and release notes.