Skip to content

Commit 001f72f

Browse files
author
cdrci
committed
Update Code to 1.139.0
1 parent 8a7bf87 commit 001f72f

10 files changed

Lines changed: 18 additions & 12 deletions

‎.node-version‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.18.1
1+
24.20.0

‎CHANGELOG.md‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ Code v99.99.999
2222

2323
## Unreleased
2424

25+
Code v1.139.0
26+
27+
### Changed
28+
29+
- Update to Code 1.139.0
30+
2531
### Fixed
2632

2733
- `--idle-timeout-seconds` was only validated when passed as `--idle-timeout-seconds=<value>`;

‎lib/vscode‎

Submodule vscode updated 1478 files

‎patches/copilot.diff‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Index: code-server/lib/vscode/build/lib/extensions.ts
4444
import watcher from './watch/index.ts';
4545

4646
import { createRequire } from 'module';
47-
@@ -491,6 +492,116 @@ export function packageCopilotExtensionS
47+
@@ -487,6 +488,116 @@ export function packageCopilotExtensionS
4848
).pipe(util2.setExecutableBit(['**/*.sh']));
4949
}
5050

‎patches/display-language.diff‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Index: code-server/lib/vscode/src/vs/server/node/remoteLanguagePacks.ts
5656
import type { INLSConfiguration } from '../../nls.js';
5757
@@ -33,7 +35,94 @@ export async function getNLSConfiguratio
5858
if (!result) {
59-
result = resolveNLSConfiguration({ userLocale: language, osLocale: language, commit: product.commit, userDataPath, nlsMetadataPath });
59+
result = resolveNLSConfiguration({ userLocale: language, osLocale: language, commit: product.commit, nlsMetadataHash: product.nlsMetadataHash, userDataPath, nlsMetadataPath });
6060
nlsConfigurationCache.set(cacheKey, result);
6161
+ // If the language pack does not yet exist, it defaults to English, which is
6262
+ // then cached and you have to restart even if you then install the pack.

‎patches/getting-started.diff‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
1919
import { renderFormattedText } from '../../../../base/browser/formattedTextRenderer.js';
2020
import { status } from '../../../../base/browser/ui/aria/aria.js';
2121
import { StandardKeyboardEvent } from '../../../../base/browser/keyboardEvent.js';
22-
@@ -54,7 +54,7 @@ import { IRecentFolder, IRecentWorkspace
22+
@@ -55,7 +55,7 @@ import { IRecentFolder, IRecentWorkspace
2323
import { OpenRecentAction } from '../../../browser/actions/windowActions.js';
2424
import { OpenFileFolderAction, OpenFolderAction, OpenFolderViaWorkspaceAction } from '../../../browser/actions/workspaceActions.js';
2525
import { EditorPane } from '../../../browser/parts/editor/editorPane.js';
@@ -28,7 +28,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
2828
import { IEditorOpenContext, IEditorSerializer } from '../../../common/editor.js';
2929
import { IWebviewElement, IWebviewService } from '../../webview/browser/webview.js';
3030
import './gettingStartedColors.js';
31-
@@ -928,6 +928,72 @@ export class GettingStartedPage extends
31+
@@ -930,6 +930,72 @@ export class GettingStartedPage extends
3232
$('p.subtitle.description', {}, localize({ key: 'gettingStarted.editingEvolved', comment: ['Shown as subtitle on the Welcome page.'] }, "Editing evolved"))
3333
);
3434

@@ -101,7 +101,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
101101
const leftColumn = $('.categories-column.categories-column-left', {},);
102102
const rightColumn = $('.categories-column.categories-column-right', {},);
103103

104-
@@ -977,6 +1043,9 @@ export class GettingStartedPage extends
104+
@@ -980,6 +1046,9 @@ export class GettingStartedPage extends
105105
recentList.setLimit(5);
106106
reset(leftColumn, startList.getDomElement(), recentList.getDomElement());
107107
}

‎patches/local-storage.diff‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/configuration/browser/co
6666
===================================================================
6767
--- code-server.orig/lib/vscode/src/vs/workbench/services/configuration/browser/configurationService.ts
6868
+++ code-server/lib/vscode/src/vs/workbench/services/configuration/browser/configurationService.ts
69-
@@ -148,8 +148,10 @@ export class WorkspaceService extends Di
69+
@@ -150,8 +150,10 @@ export class WorkspaceService extends Di
7070
this.workspaceConfiguration = this._register(new WorkspaceConfiguration(configurationCache, fileService, uriIdentityService, logService));
7171
this._register(this.workspaceConfiguration.onDidUpdateConfiguration(fromCache => {
7272
this.onWorkspaceConfigurationChanged(fromCache).then(() => {
@@ -79,7 +79,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/configuration/browser/co
7979
});
8080
}));
8181

82-
@@ -561,6 +563,12 @@ export class WorkspaceService extends Di
82+
@@ -563,6 +565,12 @@ export class WorkspaceService extends Di
8383
previousFolders = this.workspace.folders;
8484
this.workspace.update(workspace);
8585
} else {

‎patches/marketplace.diff‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Index: code-server/lib/vscode/src/vs/platform/product/common/product.ts
2020
--- code-server.orig/lib/vscode/src/vs/platform/product/common/product.ts
2121
+++ code-server/lib/vscode/src/vs/platform/product/common/product.ts
2222
@@ -65,6 +65,17 @@ else if (globalThis._VSCODE_PRODUCT_JSON
23-
Object.assign(product, { copilotVersions: { runtime, sdk } });
23+
Object.assign(product, { copilotVersions: { runtime: packageConfiguration.copilotRuntimeVersion, sdk } });
2424
}
2525
}
2626
+

‎patches/sourcemaps.diff‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Index: code-server/lib/vscode/build/gulpfile.reh.ts
66
===================================================================
77
--- code-server.orig/lib/vscode/build/gulpfile.reh.ts
88
+++ code-server/lib/vscode/build/gulpfile.reh.ts
9-
@@ -344,10 +344,15 @@ function packageTask(type: string, platf
9+
@@ -260,10 +260,15 @@ function packageTask(type: string, platf
1010
const destination = path.join(BUILD_ROOT, destinationFolderName);
1111

1212
return () => {

‎patches/update-check.diff‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Index: code-server/lib/vscode/src/vs/base/common/product.ts
101101

102102
readonly version: string;
103103
readonly date?: string;
104-
@@ -145,6 +146,7 @@ export interface IProductConfiguration {
104+
@@ -148,6 +149,7 @@ export interface IProductConfiguration {
105105
};
106106

107107
readonly extensionsGallery?: {

0 commit comments

Comments
 (0)